-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
73 lines (60 loc) · 1.25 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
72
73
services:
DB:
image: mongo:latest
container_name: Nutzer-DB
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
ports:
- "27017:27017"
volumes:
- ./MongoDB-DB:/docker-entrypoint-initdb.d
nutzervorhanden:
build:
context: ./nutzervorhanden
container_name: nutzervorhanden
depends_on:
- DB
ports:
- "3006:3006"
volumes:
- ./nutzervorhanden:/app
working_dir: /app
command: npm run dev
nutzererstellen:
build:
context: ./nutzererstellen
container_name: nutzererstellen
depends_on:
- nutzervorhanden
ports:
- "3007:3007"
volumes:
- ./nutzererstellen:/app
working_dir: /app
command: npm run dev
nutzerloeschen:
build:
context: ./nutzerloeschen
container_name: nutzerloeschen
depends_on:
- nutzervorhanden
ports:
- "3008:3008"
volumes:
- ./nutzerloeschen:/app
working_dir: /app
command: npm run dev
gui:
build:
context: ./gui
container_name: gui
depends_on:
- nutzerloeschen
- nutzererstellen
ports:
- "3001:3001"
volumes:
- ./gui:/app
working_dir: /app
command: npm run dev