-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
39 lines (38 loc) · 1.42 KB
/
docker-compose.override.yml
File metadata and controls
39 lines (38 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
version: '3.4'
services:
sio.identity:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443;http://+:80
- ConnectionStrings__Store=Server=sio.sql.store;Initial Catalog=sio-store;User Id=sa;Password=1qaz-pl,
- ConnectionStrings__IdentityServer=Server=sio.identity.sql.identityserver;Initial Catalog=sio-identityserver;User Id=sa;Password=1qaz-pl,
- ConnectionStrings__Identity=Server=sio.identity.sql;Initial Catalog=sio-identity;User Id=sa;Password=1qaz-pl,
- Identity__Authority=https://sio.identity:5001
- Clients__0__AllowedCorsOrigins__2=https://sio.api:44363
- Clients__0__AllowedCorsOrigins__3=https://sio.api:42213
- Clients__1__AllowedCorsOrigins__2=http://sio.front.server:63328
- Clients__1__AllowedCorsOrigins__3=https://sio.front.server:44348
ports:
- "5000:80"
- "5001:443"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
sio.identity.sql.identityserver:
user: 'root'
environment:
SA_PASSWORD: "1qaz-pl,"
ACCEPT_EULA: "Y"
ports:
- "1446:1433"
volumes:
- /var/opt/mssql/data
sio.identity.sql:
user: 'root'
environment:
SA_PASSWORD: "1qaz-pl,"
ACCEPT_EULA: "Y"
ports:
- "1447:1433"
volumes:
- /var/opt/mssql/data