-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml-simple
35 lines (33 loc) · 1.03 KB
/
docker-compose.yml-simple
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
version: '3.3'
services:
ckdump:
build:
context: ./ckdump
container_name: byckdump
environment:
- DATA_DIR=/var/res
- DEBUG_LEVEL=Info
- TOKEN=SIMPLE_TOKEN_005e7e058218bb6b57109831befe49ddc8b8fa868bb09afa0290152f102e42ea
- URL=https://service.example.com
- LISTEN_PORT=40002
volumes:
- res:/var/res
networks:
- apps
ports:
- "40002:40002"
logging:
driver: syslog
options:
tag: ckdump
restart: always
volumes:
res:
external: true
networks:
apps:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.21.37.0/24