diff options
| author | RATDAD <lambda@disroot.org> | 2026-02-04 17:47:40 -0500 |
|---|---|---|
| committer | RATDAD <lambda@disroot.org> | 2026-02-04 17:47:40 -0500 |
| commit | 8815a6e70720015656298bbf6905eaeda5cd4169 (patch) | |
| tree | c13b1e72cb8b8e5527eda564eb9671da7e28efe3 /stacks/auth/compose.yml | |
| parent | fe7d43ac31f7b9fe0c9be9355d35fa2ee57bd46f (diff) | |
| download | rds-platform-master.tar.gz rds-platform-master.tar.bz2 rds-platform-master.zip | |
Diffstat (limited to 'stacks/auth/compose.yml')
| -rw-r--r-- | stacks/auth/compose.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/stacks/auth/compose.yml b/stacks/auth/compose.yml new file mode 100644 index 0000000..e935946 --- /dev/null +++ b/stacks/auth/compose.yml @@ -0,0 +1,33 @@ +name: ${_STACK_0} + +networks: + net: + name: ${_NET_0} + external: true + +secrets: + JWT_SECRET: + file: './secrets/JWT_SECRET' + SESSION_SECRET: + file: './secrets/SESSION_SECRET' + STORAGE_ENCRYPTION: + file: './secrets/STORAGE_ENCRYPTION' + OIDC_HMAC_SECRET: + file: './secrets/OIDC_HMAC_SECRET' + +services: + auth: + container_name: ${_CONTAINER_0} + image: authelia/authelia:latest + restart: unless-stopped + user: '${UID}:${GID}' + secrets: ['JWT_SECRET', 'SESSION_SECRET', 'STORAGE_ENCRYPTION', OIDC_HMAC_SECRET] + env_file: + - .auth.env # Runtime Vars + - .env # Stack Vars + volumes: + - ./config/:/config + networks: + - net + expose: + - 9091 |
