-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
51 lines (47 loc) · 984 Bytes
/
compose.yaml
File metadata and controls
51 lines (47 loc) · 984 Bytes
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
name: "adguard-sync"
services:
adguard-sync:
depends_on:
adguard-master:
condition: "service_healthy"
restart: true
adguard-slave:
condition: "service_healthy"
restart: true
image: "11notes/adguard-sync:0.7.8"
read_only: true
environment:
TZ: "Europe/Zurich"
volumes:
- "adguard-sync.etc:/adguard-sync/etc"
ports:
- "3000:3000/tcp"
networks:
frontend:
restart: "always"
adguard-master:
image: "11notes/adguard:0.107.63"
environment:
TZ: "Europe/Zurich"
ports:
- "1053:53/udp"
- "1053:53/tcp"
- "3001:3000/tcp"
networks:
frontend:
restart: "always"
adguard-slave:
image: "11notes/adguard:0.107.63"
environment:
TZ: "Europe/Zurich"
ports:
- "2053:53/udp"
- "2053:53/tcp"
- "3002:3000/tcp"
networks:
frontend:
restart: "always"
volumes:
adguard-sync.etc:
networks:
frontend: