diff --git a/stacks/authentik/docker-compose.yml b/stacks/authentik/docker-compose.yml index 7ac600f..cdefae1 100644 --- a/stacks/authentik/docker-compose.yml +++ b/stacks/authentik/docker-compose.yml @@ -88,6 +88,6 @@ networks: external: true secrets: pg_pass: - file: ./secrets/pg_pass.txt + environment: AUTHENTIK_PG_PASS authentik_secret_key: - file: ./secrets/authentik_secret_key.txt \ No newline at end of file + environment: AUTHENTIK_SECRET_KEY \ No newline at end of file diff --git a/stacks/dockhand/docker-compose.yaml b/stacks/dockhand/docker-compose.yaml index a3dd8b2..398b2bc 100644 --- a/stacks/dockhand/docker-compose.yaml +++ b/stacks/dockhand/docker-compose.yaml @@ -32,4 +32,4 @@ networks: secrets: encryption_key: - file: ./secrets/dockhand_encryption_key.txt \ No newline at end of file + environment: ENCRYPTION_KEY \ No newline at end of file diff --git a/stacks/proxy/docker-compose.yaml b/stacks/proxy/docker-compose.yaml index 501dfd4..3491673 100644 --- a/stacks/proxy/docker-compose.yaml +++ b/stacks/proxy/docker-compose.yaml @@ -7,7 +7,7 @@ services: environment: - TUNNEL_TOKEN_FILE=/run/secrets/tunnel_token networks: - - proxy + - homelab_proxy secrets: - tunnel_token @@ -31,7 +31,7 @@ services: - /var/run/docker.sock:/var/run/docker.sock:ro - letsencrypt:/letsencrypt networks: - - proxy + - homelab_proxy - homelab_apps secrets: - cf_api_token @@ -41,13 +41,13 @@ volumes: driver: local networks: - proxy: - internal: true + homelab_proxy: + external: true homelab_apps: external: true secrets: tunnel_token: - file: /opt/stacks/proxy/secrets/tunnel_token.txt + environment: TUNNEL_TOKEN cf_api_token: - file: /opt/stacks/proxy/secrets/cf_api_token.txt \ No newline at end of file + environment: CF_API_TOKEN \ No newline at end of file