forked from coop-cloud/authentik
Compare commits
4 Commits
1.4.1+2023
...
2.0.0+2023
Author | SHA1 | Date | |
---|---|---|---|
41396da668 | |||
2d732e243b | |||
2f231fb22e | |||
c9f0db95dd |
2
abra.sh
2
abra.sh
@ -1,5 +1,5 @@
|
||||
export CUSTOM_CSS_VERSION=v2
|
||||
export CUSTOM_FLOWS_VERSION=v3
|
||||
export CUSTOM_FLOWS_VERSION=v4
|
||||
|
||||
customize() {
|
||||
if [ -z "$1" ]
|
||||
|
12
compose.yml
12
compose.yml
@ -31,7 +31,7 @@ x-env: &env
|
||||
version: '3.8'
|
||||
services:
|
||||
app:
|
||||
image: ghcr.io/goauthentik/server:2023.1.0
|
||||
image: ghcr.io/goauthentik/server:2023.2.3
|
||||
command: server
|
||||
secrets:
|
||||
- db_password
|
||||
@ -71,10 +71,10 @@ services:
|
||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.customFrameOptionsValue=SAMEORIGIN"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.contentSecurityPolicy=frame-ancestors ${X_FRAME_OPTIONS_ALLOW_FROM}"
|
||||
- "coop-cloud.${STACK_NAME}.version=1.4.0+2023.1.0"
|
||||
- "coop-cloud.${STACK_NAME}.version=2.0.0+2023.2.3"
|
||||
|
||||
worker:
|
||||
image: ghcr.io/goauthentik/server:2023.1.0
|
||||
image: ghcr.io/goauthentik/server:2023.2.3
|
||||
command: worker
|
||||
secrets:
|
||||
- db_password
|
||||
@ -99,7 +99,7 @@ services:
|
||||
environment: *env
|
||||
|
||||
db:
|
||||
image: postgres:12.13-alpine
|
||||
image: postgres:12.14-alpine
|
||||
secrets:
|
||||
- db_password
|
||||
volumes:
|
||||
@ -119,12 +119,12 @@ services:
|
||||
deploy:
|
||||
labels:
|
||||
backupbot.backup: "true"
|
||||
backupbot.backup.pre-hook: "mkdir -p /tmp/backup/ && PGPASSWORD=$(cat /run/secrets/db_password) pg_dump -U ${POSTGRES_USER} ${POSTGRES_DB} > /tmp/backup/backup.sql"
|
||||
backupbot.backup.pre-hook: "mkdir -p /tmp/backup/ && PGPASSWORD=$$(cat /run/secrets/db_password) pg_dump -U $${POSTGRES_USER} $${POSTGRES_DB} > /tmp/backup/backup.sql"
|
||||
backupbot.backup.post-hook: "rm -rf /tmp/backup"
|
||||
backupbot.backup.path: "/tmp/backup/"
|
||||
|
||||
redis:
|
||||
image: redis:7.0.8-alpine
|
||||
image: redis:7.0.9-alpine
|
||||
networks:
|
||||
- internal
|
||||
healthcheck:
|
||||
|
@ -1 +1,2 @@
|
||||
Logout URL changes from `https://login.example.org/if/flow/default-invalidation-flow/` to `https://login.example.org/if/flow/logout-flow/`
|
||||
Replace it in any app that uses this logout url.
|
Reference in New Issue
Block a user