-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
43 lines (40 loc) · 927 Bytes
/
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
version: "3"
services:
webclient:
image: webclient
container_name: webclient
environment:
- NODE_CLIENT_PORT=81
build:
context: .
dockerfile: .docker/client.dockerfile
ports:
- "81:80"
webserver:
image: webserver
container_name: webserver
environment:
- NODE_SERVER_PORT=82
build:
context: .
dockerfile: .docker/server.dockerfile
ports:
- "82:82"
haproxy:
image: haproxy
container_name: haproxy
build: ./haproxy
depends_on:
- webclient
- webserver
volumes:
- logging:/sidecar
ports:
- "80:80"
syslog-sidecar:
build: ./logging
container_name: logging
volumes:
- logging:/sidecar
volumes:
logging: