8 Commits

Author SHA1 Message Date
b8609fd2aa disable default TIMEOUT, see toolshed/abra#596 (comment)
Some checks reported errors
continuous-integration/drone/push Build was killed
2025-11-26 18:01:18 +01:00
a6ea4f0b41 chore: publish 3.4.0+v7.97 release
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-10-10 12:31:46 +02:00
4729fb7824 chore: publish 3.3.0+v7.91 release
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2025-06-10 14:50:29 +02:00
eb951f1a1c chore: publish 3.2.0+v7.80 release
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2025-02-04 23:43:44 +01:00
70331d393f remove stacksize and change main.js path for next release 2025-02-04 23:37:35 +01:00
2286535613 Update .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing
2025-01-08 10:09:13 -08:00
2bd0920564 chore: publish 3.1.0+v7.61 release
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2024-10-29 17:07:55 +01:00
66e3194385 update backupbot label
All checks were successful
continuous-integration/drone/push Build is passing
2024-10-24 15:44:19 +02:00
5 changed files with 16 additions and 13 deletions

View File

@ -18,7 +18,7 @@ steps:
STACK_NAME: wekan
LETS_ENCRYPT_ENV: production
SECRET_OAUTH2_SECRET_VERSION: v1
ENTRYPOINT_VERSION: v1
ENTRYPOINT_VERSION: v2
SECRET_OAUTH2_SECRET_VERSION: v1
trigger:
branch:
@ -35,7 +35,7 @@ steps:
from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
- toolshed/auto-recipes-catalogue-json
trigger:
event: tag

View File

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

View File

@ -1,4 +1,4 @@
export ENTRYPOINT_VERSION=v2
export ENTRYPOINT_VERSION=v4
set_settings(){
mongosh wekan --eval '

View File

@ -8,7 +8,6 @@ services:
command: mongod --oplogSize 128 --quiet
volumes:
- wekan-db:/data/db
- wekan-db-dump:/dump
networks:
- internal
healthcheck:
@ -19,13 +18,13 @@ services:
start_period: 1m
deploy:
labels:
backupbot.backup: "true"
backupbot.backup: "${ENABLE_BACKUPS:-true}"
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"
backupbot.backup.volumes.wekan-db.path: "wekan.db"
backupbot.restore.post-hook: 'mongorestore --drop --archive=/data/db/wekan.db'
app:
image: quay.io/wekan/wekan:v7.50
image: quay.io/wekan/wekan:v7.97
environment:
- MONGO_URL=mongodb://db:27017/wekan
- NODE_OPTIONS="--max_old_space_size=4096"
@ -91,12 +90,11 @@ 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=3.0.0+v7.50"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "coop-cloud.${STACK_NAME}.version=3.4.0+v7.97"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
volumes:
wekan-db:
wekan-db-dump:
wekan-files:
networks:

View File

@ -25,4 +25,8 @@ file_env() {
}
file_env "OAUTH2_SECRET"
bash -c "ulimit -s 65500; exec node --stack-size=65500 /build/main.js"
# https://github.com/wekan/wekan/issues/3585#issuecomment-1021522132
#bash -c "ulimit -s 65500; exec node --stack-size=65500 /build/main.js"
# https://github.com/wekan/wekan/pull/5588
#bash -c "ulimit -n 65500; exec node /build/main.js"
bash -c "exec node /build/main.js"