-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.linux.yml
More file actions
50 lines (48 loc) · 1.07 KB
/
docker-compose.linux.yml
File metadata and controls
50 lines (48 loc) · 1.07 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
version: '3.4'
networks:
default:
driver: bridge
ipam:
config:
- subnet: 172.199.0.0/16
services:
fluent:
build:
context: ./docker/fluent
target: forward
container_name: fn-fluent
image: fn-fluent:0.1.0
ports:
- 24224:24224
extra_hosts:
- "host.docker.internal:172.199.0.1"
fluent-bit:
build:
context: ./docker/fluent-bit
target: forward
container_name: fn-fluent-bit
image: fn-fluent-bit:0.1.0
ports:
- 24225:24225
extra_hosts:
- "host.docker.internal:172.199.0.1"
fluent-secure:
build:
context: ./docker/fluent
target: forward-secure
container_name: fn-fluent-secure
image: fn-fluent-secure:0.1.0
ports:
- 24226:24226
extra_hosts:
- "host.docker.internal:172.199.0.1"
fluent-bit-secure:
build:
context: ./docker/fluent-bit
target: forward-secure
container_name: fn-fluent-bit-secure
image: fn-fluent-bit-secure:0.1.0
ports:
- 24227:24227
extra_hosts:
- "host.docker.internal:172.199.0.1"