-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (40 loc) · 941 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
version: '3'
services:
watchtower:
image: index.docker.io/containrrr/watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./config.json:/config.json
environment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_INCLUDE_RESTARTING=true
command: --interval 30
monitor:
image: index.docker.io/xwe10/monitor-service
env_file:
- .env
keyword:
image: index.docker.io/xwe10/monitor-service-keyword-pinger
env_file:
- .env
toolbox:
image: index.docker.io/xwe10/toolbox
env_file:
- .env
imageproxy:
image: index.docker.io/xwe10/image-proxy
env_file:
- .env
ports:
- "8080:8080"
tls:
image: index.docker.io/xwe10/tls-api
ports:
- "8082:8082"
clearverify:
image: index.docker.io/xwe10/clear-verify
safefetchapi:
image: index.docker.io/xwe10/safefetchapi
ports:
- "4501:4501"