chore: publish 3.2.0+2023.6.1 release

This commit is contained in:
Philipp Rothmann 2023-07-25 11:41:33 +02:00
parent 159f9d767d
commit 3df66b1be7
3 changed files with 13 additions and 8 deletions

View File

@ -1,5 +1,5 @@
export CUSTOM_CSS_VERSION=v2 export CUSTOM_CSS_VERSION=v2
export FLOW_AUTHENTICATION_VERSION=v1 export FLOW_AUTHENTICATION_VERSION=v2
export FLOW_INVITATION_VERSION=v1 export FLOW_INVITATION_VERSION=v1
export FLOW_INVALIDATION_VERSION=v1 export FLOW_INVALIDATION_VERSION=v1
export FLOW_RECOVERY_VERSION=v1 export FLOW_RECOVERY_VERSION=v1

View File

@ -32,7 +32,7 @@ x-env: &env
version: '3.8' version: '3.8'
services: services:
app: app:
image: ghcr.io/goauthentik/server:2023.3.1 image: ghcr.io/goauthentik/server:2023.6.1
command: server command: server
secrets: secrets:
- db_password - db_password
@ -50,7 +50,7 @@ services:
- internal - internal
- proxy - proxy
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "localhost:9000/-/health/live/"] test: "bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/9000; exit $$?;'"
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 10 retries: 10
@ -72,11 +72,11 @@ services:
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - "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.customFrameOptionsValue=SAMEORIGIN"
- "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.contentSecurityPolicy=frame-ancestors ${X_FRAME_OPTIONS_ALLOW_FROM}" - "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.contentSecurityPolicy=frame-ancestors ${X_FRAME_OPTIONS_ALLOW_FROM}"
- "coop-cloud.${STACK_NAME}.version=3.1.2+2023.3.1" - "coop-cloud.${STACK_NAME}.version=3.2.0+2023.6.1"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}" - "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
worker: worker:
image: ghcr.io/goauthentik/server:2023.3.1 image: ghcr.io/goauthentik/server:2023.6.1
command: worker command: worker
secrets: secrets:
- db_password - db_password
@ -107,7 +107,7 @@ services:
environment: *env environment: *env
db: db:
image: postgres:12.14-alpine image: postgres:12.15-alpine
secrets: secrets:
- db_password - db_password
volumes: volumes:
@ -132,7 +132,7 @@ services:
backupbot.backup.path: "/var/lib/postgresql/data" backupbot.backup.path: "/var/lib/postgresql/data"
redis: redis:
image: redis:7.0.10-alpine image: redis:7.0.12-alpine
networks: networks:
- internal - internal
healthcheck: healthcheck:

View File

@ -22,7 +22,9 @@ entries:
attrs: attrs:
name: !Context welcome_message name: !Context welcome_message
title: !Context welcome_message title: !Context welcome_message
user_fields:
- email
- username
### STAGES ### STAGES
- identifiers: - identifiers:
name: default-authentication-identification name: default-authentication-identification
@ -30,6 +32,9 @@ entries:
attrs: attrs:
password_stage: !Find [authentik_stages_password.passwordstage, [name, default-authentication-password]] password_stage: !Find [authentik_stages_password.passwordstage, [name, default-authentication-password]]
recovery_flow: !Find [authentik_flows.flow, [slug, default-recovery-flow]] recovery_flow: !Find [authentik_flows.flow, [slug, default-recovery-flow]]
user_fields:
- email
- username
- identifiers: - identifiers:
name: default-authentication-login name: default-authentication-login