1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Make docker compose less dependent on .env file

This commit is contained in:
Justin Baur 2025-03-21 20:28:14 +00:00
parent 9f9061e1eb
commit 1a2fff7d65

View File

@ -1,5 +1,3 @@
version: "3.9"
services: services:
mssql: mssql:
image: mcr.microsoft.com/mssql/server:2022-latest image: mcr.microsoft.com/mssql/server:2022-latest
@ -34,7 +32,7 @@ services:
mail: mail:
image: sj26/mailcatcher:latest image: sj26/mailcatcher:latest
ports: ports:
- "${MAILCATCHER_PORT}:1080" - "${MAILCATCHER_PORT:-1080}:1080"
- "10250:1025" - "10250:1025"
profiles: profiles:
- mail - mail
@ -76,8 +74,8 @@ services:
ports: ports:
- "8090:8080" - "8090:8080"
environment: environment:
SIMPLESAMLPHP_SP_ENTITY_ID: ${IDP_SP_ENTITY_ID} SIMPLESAMLPHP_SP_ENTITY_ID: ${IDP_SP_ENTITY_ID:-http://localhost:51822/saml}
SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE: ${IDP_SP_ACS_URL} SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE: ${IDP_SP_ACS_URL:?error}
SIMPLESAMLPHP_SP_SINGLE_LOGOUT_SERVICE: null SIMPLESAMLPHP_SP_SINGLE_LOGOUT_SERVICE: null
volumes: volumes:
- ./authsources.php:/var/www/simplesamlphp/config/authsources.php - ./authsources.php:/var/www/simplesamlphp/config/authsources.php
@ -104,8 +102,8 @@ services:
volumes: volumes:
- "./reverse-proxy.conf:/etc/nginx/conf.d/default.conf" - "./reverse-proxy.conf:/etc/nginx/conf.d/default.conf"
ports: ports:
- "${API_PROXY_PORT}:${API_PROXY_PORT}" - "${API_PROXY_PORT:-4100}:${API_PROXY_PORT:-4100}"
- "${IDENTITY_PROXY_PORT}:${IDENTITY_PROXY_PORT}" - "${IDENTITY_PROXY_PORT:-33756}:${IDENTITY_PROXY_PORT:-33756}"
profiles: profiles:
- proxy - proxy