summaryrefslogtreecommitdiff
path: root/stacks/auth/compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'stacks/auth/compose.yml')
-rw-r--r--stacks/auth/compose.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/stacks/auth/compose.yml b/stacks/auth/compose.yml
deleted file mode 100644
index e935946..0000000
--- a/stacks/auth/compose.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-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