-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
45 lines (38 loc) · 893 Bytes
/
docker-compose.override.yml
File metadata and controls
45 lines (38 loc) · 893 Bytes
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
40
41
42
43
44
45
version: '3.4'
services:
PostgreDB:
container_name: PostgreDB
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
restart: always
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
Pgadmin:
container_name: Pgadmin
environment:
- PGADMIN_DEFAULT_EMAIL=serkanince444@gmail.com
- PGADMIN_DEFAULT_PASSWORD=123qwe
restart: always
ports:
- "5050:80"
volumes:
- pgadmin_data:/root/.pgadmin
links:
- PostgreDB
depends_on:
- PostgreDB
ProductApi:
environment:
- ASPNETCORE_ENVIRONMENT=Development
ports:
- "8000:80"
depends_on:
- PostgreDB
links:
- PostgreDB
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro