mirror of
https://github.com/ivanpaulovich/clean-architecture-manga.git
synced 2025-01-08 11:57:36 +08:00
22 lines
590 B
YAML
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 |