clean-architecture-manga/docker-compose/docker-compose.production.yml
Ivan Paulovich e8aa4e43db review
2021-11-26 20:35:52 +01:00

22 lines
590 B
YAML

version: '3.4'
services:
nginx:
ports:
- "80:80"
- "443:443"
accounts-api:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- AuthenticationModule__AuthorityUrl=https://wallet.local
identity-server:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- IDENTITY_SERVER_ORIGIN=https://wallet.local
- RedirectUris=https://wallet.local/signin-oidc
- PostLogoutRedirectUris=https://wallet.local
- AllowedCorsOrigins=https://wallet.local
wallet-spa:
build:
args:
ENV: Production