generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdocker-compose.yaml
60 lines (53 loc) · 1.05 KB
/
docker-compose.yaml
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
version: '3'
services:
myapp:
container_name: myapp
build: myapp
image: myapp
config:
container_name: configmanager
build: configmanager
image: configmanager
volumes:
- ./configmanager/data:/data
- configvolume:/data/blocklist
proxy:
container_name: proxy
build: proxy
image: proxy
ports:
- "8000:8000"
depends_on:
- myapp
- clone
- exhaust
- fluent
logging:
driver: fluentd
fluent:
container_name: fluentbit
image: fluent/fluent-bit:3.0
volumes:
- ./fluentbit/fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf
- ./fluentbit/parsers.conf:/fluent-bit/etc/custom_parsers.conf
ports:
- "24224:24224"
- "24224:24224/udp"
clone:
container_name: clone
build: clone
image: clone
depends_on:
- fluent
logging:
driver: fluentd
exhaust:
container_name: exhaust
build: exhaust
image: exhaust
depends_on:
- fluent
logging:
driver: fluentd
volumes:
configvolume: {}