Compare commits

...

3 Commits

Author SHA1 Message Date
3wc e7360c2a16 chore: publish 7.2.0+22.0.5 release
continuous-integration/drone/push Build is passing Details
2023-11-22 15:27:32 +00:00
3wc 5b83f487ec Fix compose file version 2023-11-22 15:25:43 +00:00
3wc 3d42a26b9e Make persistent theme volume optional 2023-11-22 15:23:27 +00:00
4 changed files with 21 additions and 3 deletions

View File

@ -8,6 +8,11 @@ LETS_ENCRYPT_ENV=production
ADMIN_USERNAME=admin
WELCOME_THEME=keycloak
COMPOSE_FILE="compose.yml"
SECRET_DB_ROOT_PASSWORD_VERSION=v1
SECRET_DB_PASSWORD_VERSION=v1
SECRET_ADMIN_PASSWORD_VERSION=v1
# Enable persistent theme volume, if you want to apply a custom theme
#COMPOSE_FILE="$COMPOSE_FILE:compose.theme.yml"

10
compose.theme.yml Normal file
View File

@ -0,0 +1,10 @@
---
version: "3.8"
services:
app:
volumes:
- "themes:/opt/keycloak/themes"
volumes:
themes:

View File

@ -30,7 +30,6 @@ services:
# retries: 10
# start_period: 1m
volumes:
- "themes:/opt/keycloak/themes"
- "providers:/opt/keycloak/providers"
depends_on:
- mariadb
@ -47,7 +46,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=7.1.0+22.0.5"
- "coop-cloud.${STACK_NAME}.version=7.2.0+22.0.5"
db:
image: "mariadb:10.11"
@ -91,5 +90,4 @@ secrets:
volumes:
mariadb:
themes:
providers:

5
release/7.2.0+22.0.5 Normal file
View File

@ -0,0 +1,5 @@
A persistent volume for themes is now optional, and not enabled by default.
If you are using a custom theme, consult the recipe `.env.sample` to see the new
variables you need to add. You can use `abra app check ...` to verify that
they've been added correctly.