Replace secrets/configs with mounted files/folders

This commit is contained in:
Colin Hebert
2023-04-16 09:34:30 +10:00
parent fe50b4d1a9
commit 1520a5a63f
8 changed files with 28 additions and 102 deletions

View File

@@ -21,17 +21,14 @@ services:
- reverse-proxy
volumes:
- ${NASCOMPOSE_SERVICES?}/authentication/volumes/authelia_config/:/config/
configs:
- source: authelia_configuration
target: /etc/authelia/configuration.yml
- source: authelia_access
target: /etc/authelia/access.yml
- source: authelia_authentication
target: /etc/authelia/authentication.yml
secrets:
- jwt_secret
- storage_key
- smtp_password
# Configuration
- ${NASCOMPOSE_SERVICES?}/authentication/configs/configuration.yml:/etc/authelia/configuration.yml:ro
- ${NASCOMPOSE_SERVICES?}/authentication/configs/access.yml:/etc/authelia/access.yml:ro
- ${NASCOMPOSE_SERVICES?}/authentication/configs/authentication.yml:/etc/authelia/authentication.yml:ro
# Secrets
- ${NASCOMPOSE_SERVICES?}/authentication/secrets/jwt_secret:/run/secrets/jwt_secret:ro
- ${NASCOMPOSE_SERVICES?}/authentication/secrets/storage_key:/run/secrets/storage_key:ro
- ${NASCOMPOSE_SERVICES?}/authentication/secrets/smtp_password:/run/secrets/smtp_password:ro
restart: unless-stopped
labels:
traefik.enable: true
@@ -39,19 +36,3 @@ services:
networks:
reverse-proxy:
external: true
configs:
authelia_configuration:
file: ${NASCOMPOSE_SERVICES?}/authentication/configs/configuration.yml
authelia_access:
file: ${NASCOMPOSE_SERVICES?}/authentication/configs/access.yml
authelia_authentication:
file: ${NASCOMPOSE_SERVICES?}/authentication/configs/authentication.yml
secrets:
jwt_secret:
file: ${NASCOMPOSE_SERVICES?}/authentication/secrets/jwt_secret
storage_key:
file: ${NASCOMPOSE_SERVICES?}/authentication/secrets/storage_key
smtp_password:
file: ${NASCOMPOSE_SERVICES?}/authentication/secrets/smtp_password