-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
52 lines (42 loc) · 1.2 KB
/
docker-compose.yml
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
46
47
48
49
50
51
52
version: '2'
services:
##################################################
## API ##
##################################################
webapi-db-updater:
build: ./
command: /app/src/DbUpdate.sh
environment:
- ASPNETCORE_ENVIRONMENT=Development
webapi-sienn:
build: ./
command: dotnet SIENN.WebApi.dll
ports:
- 5000:5000
environment:
- ASPNETCORE_ENVIRONMENT=Development
proxy-webapi-sienn:
build: ./Deployment/Nginx
ports:
- 8080:8080
volumes:
- /etc/letsencrypt:/certs/letsencrypt
##################################################
## DATABASES ##
##################################################
one-postgres:
image: postgres
ports:
- 5432:5432
environment:
- POSTGRES_PASSWORD=SiennaPass#0Rd
##################################################
## TOOLS ##
##################################################
interface-postgres:
image: fenglc/pgadmin4
ports:
- 82:5050
environment:
DEFAULT_PASSWORD: SiennaPass#0Rd
DEFAULT_USER: postgres