Compare commits

..
Author SHA1 Message Date
autonomic-bot 7a7d43403d chore: upgrade db to pgautoupgrade/pgautoupgrade:18-alpine, move volume mount to /var/lib/postgresql (PG18 data-dir layout)
cc-ci/testme cc-ci: success
2026-09-18 02:55:03 +00:00
autonomic-bot 8fc323d410 chore: upgrade db to pgautoupgrade/pgautoupgrade:17-alpine
cc-ci/testme cc-ci: success
2026-09-11 03:09:59 +00:00
fauno 1378ef4330 Merge pull request 'adds maintenance and updates readme' (#31) from LIT_as_maintainers into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/hedgedoc/pulls/31
Reviewed-by: fauno <fauno@sutty.coop.ar>
2026-08-26 17:53:53 +00:00
carla 018097c4d2 adds fauno and updates renovate with reviewers 2026-08-26 15:22:37 +02:00
carla 3a8164d3a1 adds maintenance and updates readme 2026-08-26 13:19:22 +02:00
autonomic-bot d9e0da92a2 chore: upgrade db to pgautoupgrade/pgautoupgrade:18-alpine
cc-ci/testme cc-ci: success
2026-08-22 20:37:24 +00:00
autonomic-bot ba679b3e9c chore: upgrade db to pgautoupgrade/pgautoupgrade:17-alpine
cc-ci/testme cc-ci: failure
2026-08-14 02:42:10 +00:00
autonomic-bot 8966fd7126 chore: merge upstream main (hedgedoc 1.11.1, 3.1.1+1.11.1) into upgrade branch
cc-ci/testme cc-ci: success
2026-08-04 00:17:31 +00:00
autonomic-bot c236531def chore: upgrade pgautoupgrade to 18-alpine, pin PGDATA=/var/lib/postgresql/data
cc-ci/testme cc-ci: success
2026-07-03 04:38:52 +00:00
autonomic-bot 341922a2df chore: upgrade pgautoupgrade from 16-alpine to 17-alpine
cc-ci/testme cc-ci: success
2026-06-22 21:33:32 +00:00
4 changed files with 38 additions and 4 deletions
+32
View File
@@ -0,0 +1,32 @@
# Hedgedoc Recipe Maintenance
All contributions should be made via a pull request. This is to ensure a
certain quality and consistency, that others can rely on.
## Maintainer Responsibilities
A recipe maintainer has the following responsibilities:
- Respond to pull requests / issues within two weeks
- Make image security updates within a week
- Make image major updates every three months
In order to fullfill these responsibilities a recipe maintainer:
- Has to watch the repository (to get notifications)
- Needs to make sure renovate is configured properly
## Pull Requests
A pull request can be merged if it is approved by at least one maintainer. For
pull requests opened by a maintainer they need to be approved by another
maintainer. Even though it is okay to merge a pull request with one approval, it
is always better if all maintainers looked at the pull request and approved it.
## Become a maintainer
Everyone can apply to be a recipe maintainer:
1. Watch the repository to always get updates
2. Simply add your self to the list in the [README.md](./README.md) and open a new pull request with the change.
3. Once the pull request gets merged you will be added to the [hedgedoc maintainers team](https://git.coopcloud.tech/org/coop-cloud/teams/hedgedoc-maintainers).
4. Join the room [#cc-|-hedgedoc-maintenance:matrix.org](#cc-|-hedgedoc-maintenance:matrix.org) and chat to other maintainers.
+2 -1
View File
@@ -5,8 +5,9 @@
[Hedgedoc][hedegedoc] using Coöp Cloud ♥ [Hedgedoc][hedegedoc] using Coöp Cloud ♥
<!-- metadata --> <!-- metadata -->
* **Maintainer**: [@fauno](https://git.coopcloud.tech/fauno) , Local-IT: [@moritz](https://git.coopcloud.tech/moritz), [@msimon](https://git.coopcloud.tech/simon), [@carla](https://git.coopcloud.tech/carla)
* **Category**: Apps * **Category**: Apps
* **Status**: 2, beta * **Status**: 3
* **Image**: [`quay.io/hedgedoc/hedgedoc`](https://quay.io/hedgedoc/hedgedoc), 4, upstream * **Image**: [`quay.io/hedgedoc/hedgedoc`](https://quay.io/hedgedoc/hedgedoc), 4, upstream
* **Healthcheck**: Yes * **Healthcheck**: Yes
* **Backups**: Yes * **Backups**: Yes
+2 -2
View File
@@ -14,13 +14,13 @@ services:
secrets: secrets:
- db_password - db_password
db: db:
image: pgautoupgrade/pgautoupgrade:16-alpine image: pgautoupgrade/pgautoupgrade:18-alpine
environment: environment:
- POSTGRES_USER=codimd - POSTGRES_USER=codimd
- POSTGRES_PASSWORD_FILE=/run/secrets/db_password - POSTGRES_PASSWORD_FILE=/run/secrets/db_password
- POSTGRES_DB=codimd - POSTGRES_DB=codimd
volumes: volumes:
- "postgres:/var/lib/postgresql/data" - "postgres:/var/lib/postgresql"
secrets: secrets:
- db_password - db_password
networks: networks:
+2 -1
View File
@@ -2,5 +2,6 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"config:base" "config:base"
] ],
"reviewers": ["fauno","moritz","simon","carla"]
} }