-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
78 lines (69 loc) · 1.63 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: "2.4"
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.78.62.0/24
volumes:
urlteam-data:
auto-data:
services:
watchtower:
image: containrrr/watchtower:latest
restart: unless-stopped
labels:
com.centurylinklabs.watchtower.enable: "true"
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
command: --cleanup --label-enable --interval 3600
unbound:
image: horaynarea/unbound_docker:latest
restart: unless-stopped
labels:
com.centurylinklabs.watchtower.enable: "true"
volumes:
- /etc/localtime:/etc/localtime:ro
networks:
default:
ipv4_address: 10.78.62.200
urlteam:
image: atdr.meo.ws/archiveteam/warrior-dockerfile:latest
restart: on-failure
depends_on:
- unbound
labels:
com.centurylinklabs.watchtower.enable: "true"
dns:
- 10.78.62.200
env_file:
- warrior.conf
environment:
SELECTED_PROJECT: "urlteam2"
CONCURRENT_ITEMS: "6"
volumes:
- /etc/localtime:/etc/localtime:ro
- urlteam-data:/home/warrior/data
ports:
- 8000:8001
auto:
image: atdr.meo.ws/archiveteam/warrior-dockerfile:latest
restart: on-failure
depends_on:
- unbound
labels:
com.centurylinklabs.watchtower.enable: "true"
dns:
- 10.78.62.200
env_file:
- warrior.conf
environment:
SELECTED_PROJECT: "auto"
CONCURRENT_ITEMS: "2"
volumes:
- /etc/localtime:/etc/localtime:ro
- auto-data:/home/warrior/data
ports:
- 8001:8001