-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (47 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
52 lines (47 loc) · 1.04 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
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3'
services:
fmlsserver:
image: fml-2-server
hostname: fmlsserver
ports:
- "8080:8080"
volumes:
- "/mnt/f/Daten/Privat/Projekte/#01_Active_Projects/08_FML_2/:/app"
container_name: fmlsserver
networks:
mynetwork:
clientA:
image: fml-2-client
container_name: clientA
environment:
- CLIENT_NUMBER=A
volumes:
- "/mnt/f/Daten/Privat/Projekte/#01_Active_Projects/08_FML_2/:/app"
depends_on:
- fmlsserver
networks:
mynetwork:
clientB:
image: fml-2-client
container_name: clientB
environment:
- CLIENT_NUMBER=B
volumes:
- "/mnt/f/Daten/Privat/Projekte/#01_Active_Projects/08_FML_2/:/app"
depends_on:
- fmlsserver
networks:
- mynetwork
clientC:
image: fml-2-client
container_name: clientC
environment:
- CLIENT_NUMBER=C
volumes:
- "/mnt/f/Daten/Privat/Projekte/#01_Active_Projects/08_FML_2/:/app"
depends_on:
- fmlsserver
networks:
- mynetwork
networks:
mynetwork: