Compare commits

..

7 Commits

Author SHA1 Message Date
441c411c88 ci: cc-ci generic-suite probe (DG6)
All checks were successful
cc-ci/testme cc-ci: success
2026-05-28 01:46:22 +01:00
f
09bf4d54c5 chore: publish 3.0.10+1.10.8 release 2026-04-15 17:06:10 -03:00
f
5c4b99b407 fix: upgrade to 1.10.8 2026-04-15 17:02:22 -03:00
f
cf34b50e44 fix: suggest what you're actually going to find on the env file 2026-04-15 17:01:32 -03:00
f
cd4d4313a4 fix: user creation command closes #26 2026-04-15 17:01:07 -03:00
d9351db4fd chore: publish 3.0.9+1.10.7 release 2026-03-17 17:17:56 +01:00
91dba20e43 chore: replace depricated traefik.docker.* with traefik.swarm.* 2026-03-17 17:17:28 +01:00
2 changed files with 11 additions and 9 deletions

View File

@ -20,14 +20,14 @@
1. Set up Docker Swarm and [`abra`][abra]
2. Deploy [`coop-cloud/traefik`][compose-traefik]
3. `abra app new hedgedoc`
4. `abra app config YOURAPPDOMAIN` - be sure to change `$DOMAIN` to something that resolves to
4. `abra app config YOURAPPDOMAIN` - be sure to change `DOMAIN` to something that resolves to
your Docker swarm box
5. `abra app deploy YOURAPPDOMAIN`
6. Create initial user:
```
abra app run YOURAPPDOMAIN app bash
. /docker-entrypoint.sh -e
bin/manage_users
```
abra app run YOURAPPDOMAIN app -- bin/manage_users --add admin@ema.il
```
[hedegedoc]: https://github.com/hedgedoc/hedgedoc
[abra]: https://git.autonomic.zone/autonomic-cooperative/abra
@ -38,3 +38,5 @@
Uncomment the Anubis compose file from the `.env` file and re-deploy the
app. Don't forget to actually [enable Anubis on the Traefik app
too](https://recipes.coopcloud.tech/traefik)!
# cc-ci generic-suite probe (Phase 1d DG6) — no functional change.

View File

@ -1,7 +1,7 @@
version: "3.8"
services:
app:
image: quay.io/hedgedoc/hedgedoc:1.10.7
image: quay.io/hedgedoc/hedgedoc:1.10.8
environment:
- CMD_USECDN=false
- CMD_URL_ADDPORT=false
@ -46,7 +46,7 @@ services:
condition: on-failure
labels:
- "traefik.enable=true"
- "traefik.docker.network=proxy"
- "traefik.swarm.network=proxy"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=3000"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
@ -58,10 +58,10 @@ services:
- "traefik.http.middlewares.${STACK_NAME}-redirecthostname.redirectregex.replacement=https://${DOMAIN}/$${2}"
- "traefik.http.middlewares.${STACK_NAME}-redirecthostname.redirectregex.permanent=true"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "coop-cloud.${STACK_NAME}.version=3.0.8+1.10.7"
- "coop-cloud.${STACK_NAME}.version=3.0.10+1.10.8"
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
healthcheck:
test: "nodejs -e \"http.get('http://localhost:3000', (res) => { console.log('status: ', res.statusCode); if (res.statusCode == 200) { process.exit(0); } else { process.exit(1); } });\""
test: 'nodejs -e "http.get(''http://localhost:3000'', (res) => { console.log(''status: '', res.statusCode); if (res.statusCode == 200) { process.exit(0); } else { process.exit(1); } });"'
interval: 30s
timeout: 10s
retries: 10