Compare commits

...

8 Commits

Author SHA1 Message Date
d7a3f874c9 chore: publish 0.13.2+v6.81 release
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-26 17:57:44 +02:00
9b84875ea0 chore: formatting 2023-06-26 17:09:43 +02:00
16753c808a chore: point backup to a volume directory 2023-06-26 17:09:25 +02:00
16b48136e7 enable mongo logs 2023-06-26 17:09:10 +02:00
083310a964 fix: remove secret version from abra.sh 2023-06-23 11:42:39 +02:00
d3e1340e03 chore: publish 0.13.1+v6.81 release
All checks were successful
continuous-integration/drone/push Build is passing
2023-04-25 12:10:04 +02:00
28c8f7539a add auto update and timeout env 2023-04-18 18:22:54 +02:00
97a348ce29 add timeout
All checks were successful
continuous-integration/drone/push Build is passing
2023-04-13 20:36:16 +02:00
3 changed files with 12 additions and 10 deletions

View File

@ -1,4 +1,6 @@
TYPE=wekan
TIMEOUT=300
ENABLE_AUTO_UPDATE=true
LETS_ENCRYPT_ENV=production
SECRET_OAUTH2_SECRET_VERSION=v1

View File

@ -1,2 +1 @@
export SECRET_OAUTH2_SECRET_VERSION=v1
export ENTRYPOINT_VERSION=v2

View File

@ -2,7 +2,7 @@ version: '3.8'
services:
db:
image: mongo:5.0
command: mongod --logpath /dev/null --oplogSize 128 --quiet
command: mongod --oplogSize 128 --quiet
volumes:
- wekan-db:/data/db
networks:
@ -16,9 +16,9 @@ services:
deploy:
labels:
backupbot.backup: "true"
backupbot.backup.pre-hook: "mkdir /tmp/backup/ && mongodump --archive=/tmp/backup/wekan.db"
backupbot.backup.post-hook: "rm -rf /tmp/backup"
backupbot.backup.path: "/tmp/backup/"
backupbot.backup.pre-hook: "mongodump --archive=/data/db/wekan.db"
backupbot.backup.post-hook: "rm -rf /data/db/wekan.db"
backupbot.backup.path: "/data/db/wekan.db"
app:
image: quay.io/wekan/wekan:v6.81
@ -32,7 +32,7 @@ services:
- WITH_API
- RICHER_CARD_COMMENT_EDITOR
- CORS
- CORS_ALLOW_HEADERS
- CORS_ALLOW_HEADERS
- CORS_EXPOSE_HEADERS
- PASSWORD_LOGIN_ENABLED
- OAUTH2_ENABLED
@ -52,8 +52,8 @@ services:
- PROPAGATE_OIDC_DATA
- OIDC_REDIRECTION_ENABLED
networks:
- internal
- proxy
- internal
- proxy
depends_on:
- db
healthcheck:
@ -83,11 +83,12 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.13.0+v6.81"
- "coop-cloud.${STACK_NAME}.version=0.13.2+v6.81"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
volumes:
wekan-db:
networks:
proxy:
external: true