Compare commits

...

7 Commits

Author SHA1 Message Date
3wc
0a6f397f4b Add CI and catalogue generation [mass update]
All checks were successful
continuous-integration/drone/push Build is passing
2025-05-08 14:44:10 +02:00
ba78d79998 chore: publish 1.1.1+0.24.6 release
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2025-02-04 18:51:07 +01:00
5637a59368 chore: publish 1.1.0+0.24.6 release
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2025-01-19 10:28:23 -08:00
e039b08ff0 Update .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-08 10:09:13 -08:00
db3edafbee add REDIRECT_DOMAIN
All checks were successful
continuous-integration/drone/push Build is passing
2024-10-26 00:06:03 +02:00
ce8c3eec63 add EXTRA_DOMAINS env
All checks were successful
continuous-integration/drone/push Build is passing
2024-10-25 22:43:56 +02:00
c4a74a817a fix drone runner
All checks were successful
continuous-integration/drone/push Build is passing
2024-10-25 22:13:55 +02:00
3 changed files with 11 additions and 8 deletions

View File

@ -17,8 +17,9 @@ steps:
DOMAIN: authentik.swarm-test.autonomic.zone
STACK_NAME: authentik
LETS_ENCRYPT_ENV: production
CONFIG_YML_VERSION: v1
CONFIG_YML_VERSION: v8
HEALTHCHECK_VERSION: v1
PG_BACKUP_VERSION: v1
SECRET_DB_PASSWORD_VERSION: v1
SECRET_JWT_SECRET_VERSION: v1
@ -37,8 +38,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

@ -7,6 +7,7 @@ DOMAIN=vikunja.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.vikunja.example.com`'
#REDIRECT_DOMAIN=www.vikunja.example.com
LETS_ENCRYPT_ENV=production

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: vikunja/vikunja:0.24.2
image: vikunja/vikunja:0.24.6
environment:
- DOMAIN
- LOG_LEVEL
@ -50,15 +50,17 @@ services:
- source: healthcheck
target: /healthcheck
mode: 555
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=3456"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect-aliases@docker"
- "traefik.http.middlewares.${STACK_NAME}-redirect-aliases.redirectregex.regex=^https://${REDIRECT_DOMAIN:-example.com}(.*)"
- "traefik.http.middlewares.${STACK_NAME}-redirect-aliases.redirectregex.replacement=https://${DOMAIN}$${1}"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=1.0.3+0.24.2"
- "coop-cloud.${STACK_NAME}.version=1.1.1+0.24.6"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
healthcheck:
test: [ "CMD", "/healthcheck"]
@ -68,7 +70,7 @@ services:
start_period: 1m
redis:
image: redis:7.4.1-alpine
image: redis:7.4.2-alpine
networks:
- internal