-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
71 lines (70 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '3.6'
services:
database:
image: postgres:13.3-alpine
profiles:
- development
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD_FILE=/run/secrets/POSTGRES__ROOT_PASS
- POSTGRES_DB=postgres
- PGDATA=/data
- APP_USER=speiderapp
- APP_PASSWORD_FILE=/run/secrets/SPEIDERAPP__DB_PASS
- APP_DB=speiderapp
volumes:
# Data and config is commented out so as to prevent persitence, making it easier to reset
# - ./.docker/db_dev/temp/data:/data
# - ./.docker/db_dev/temp/config:/config
- ./.docker/db_dev/initdb:/docker-entrypoint-initdb.d
secrets:
- POSTGRES__ROOT_PASS
- SPEIDERAPP__DB_PASS
backend:
image: mcr.microsoft.com/dotnet/sdk:6.0
profiles:
- development
ports:
- "5000:5000"
environment:
- SPEIDERAPP__SECRETS_DIRECTORY=/run/secrets
- SPEIDERAPP__DB_HOST=database
working_dir: /source
volumes:
- ./:/source
# Excluding the .docker-directory from the container
- /source/.docker
# Excluding compiled files from the container, separating the host (Windows) and container (Linux)
- /source/bin
- /source/obj
- /source/SpeiderappAPI/bin
- /source/SpeiderappAPI/obj
command: ["dotnet", "watch", "run", "--project", "SpeiderappAPI", "--environment", "Development"]
depends_on:
- database
secrets:
- SPEIDERAPP__DB_PASS
frontend:
image: mcr.microsoft.com/dotnet/sdk:6.0
profiles:
- development
ports:
- "3000-3001:3000-3001"
working_dir: /source
volumes:
- ./SpeiderappPWA:/source
# Excluding the .docker-directory from the container
- /source/.docker
# Excluding compiled files from the container, separating the host (Windows) and container (Linux)
- /source/bin
- /source/obj
- /source/SpeiderappAPI/bin
- /source/SpeiderappAPI/obj
command: [ "dotnet", "watch", "run" ]
secrets:
POSTGRES__ROOT_PASS:
file: ./.docker/secrets/POSTGRES__ROOT_PASS
SPEIDERAPP__DB_PASS:
file: ./.docker/secrets/SPEIDERAPP__DB_PASS