-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
106 lines (98 loc) · 2.6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
########################################################
# Intended for local development eps servers #
########################################################
version: '3'
services:
ls-1:
image: inoeg/eps:${EPS_VERSION}
expose:
- 4445
- 5555
ports:
- 4445:4445
- 5555:5555
volumes:
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/ls-1
command: [ "--level", "debug", "server", "run" ]
extra_hosts:
- "host.docker.internal:host-gateway"
demo-app:
image: inoeg/eps:${EPS_VERSION}
expose:
- 4444
- 5554
ports:
- 4444:4444
- 5554:5554
volumes:
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/demo-app
command: [ "--level", "debug", "server", "run" ]
extra_hosts:
- "host.docker.internal:host-gateway"
hd-1:
image: inoeg/eps:${EPS_VERSION}
expose:
- 4446
- 5556
ports:
- 4446:4446
- 5556:5556
volumes:
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/hd-1
command: [ "--level", "debug", "server", "run" ]
extra_hosts:
- "host.docker.internal:host-gateway"
public-proxy:
image: inoeg/proxy:${EPS_VERSION}
expose:
- 4433
- 9999
- 6655
ports:
- 4433:4433
- 9999:9999
- 6655:6655
volumes:
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
- ./pub-proxy-db:/tmp # to make proxy db persistant
environment:
- PROXY_SETTINGS=settings/dev/roles/public-proxy-1
command: [ "--level", "debug", "run", "public" ]
public-proxy-eps:
image: inoeg/eps:${EPS_VERSION}
expose:
- 5559
- 5544
volumes:
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/public-proxy-eps-1
command: [ "--level", "debug", "server", "run" ]
private-proxy:
image: inoeg/proxy:${EPS_VERSION}
expose:
- 8877
volumes:
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
- ./private-proxy-db:/tmp # to make proxy db persistant
environment:
- PROXY_SETTINGS=settings/dev/roles/private-proxy-1
command: [ "--level", "debug", "run", "private" ]
private-proxy-1:
image: inoeg/eps:${EPS_VERSION}
expose:
- 7766
- 7776
ports:
- 7766:7766
volumes:
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/private-proxy-eps-1
command: [ "--level", "debug", "server", "run" ]