Compare commits

...

3 Commits

Author SHA1 Message Date
3wc 6ac1dd3c40 chore: publish 0.4.1+2.5.2 release
continuous-integration/drone/push Build is passing Details
2023-01-20 18:42:32 -08:00
3wc 6bb7663344 Update Drone for new var name 2023-01-20 18:42:09 -08:00
3wc b56e41fda8 SECRET_SMTP_PASSWORD(→ _VERSION) to match format 2023-01-20 18:33:44 -08:00
4 changed files with 5 additions and 4 deletions

View File

@ -20,7 +20,7 @@ steps:
SECRET_DB_PASSWORD_VERSION: v1
SECRET_DB_ROOT_PASSWORD_VERSION: v1
SECRET_APP_SECRET_VERSION: v1
SECRET_SMTP_PASSWORD: v1
SECRET_SMTP_PASSWORD_VERSION: v1
SYMFONY__ENV__FOSUSER_REGISTRATION: "false"
ENTRYPOINT_VERSION: v1
trigger:

View File

@ -8,7 +8,7 @@ LETS_ENCRYPT_ENV=production
SECRET_DB_PASSWORD_VERSION=v1
SECRET_DB_ROOT_PASSWORD_VERSION=v1
SECRET_APP_SECRET_VERSION=v1
SECRET_SMTP_PASSWORD=v1
SECRET_SMTP_PASSWORD_VERSION=v1
# Wallabag options, see https://github.com/wallabag/docker
SYMFONY__ENV__FOSUSER_REGISTRATION=true

View File

@ -49,7 +49,7 @@ services:
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=0.3.1+2.5.2"
- "coop-cloud.${STACK_NAME}.version=0.4.1+2.5.2"
db:
image: mariadb:10.9
environment:
@ -89,7 +89,7 @@ secrets:
name: ${STACK_NAME}_app_secret_${SECRET_APP_SECRET_VERSION}
smtp_password:
external: true
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD}
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
configs:
entrypoint:

1
releases/0.4.1+2.5.2 Normal file
View File

@ -0,0 +1 @@
The SECRET_SMTP_PASSWORD version has been renamed to SECRET_SMTP_PASSWORD_VERSION for consistency with other secret variables. This shouldn't affect existing secret names, but you'll need to run `abra app config ..` and update the version variable name on all your existing app instances.