-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
37 lines (36 loc) · 907 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
---
version: "2.1"
services:
adguardhome:
image: adguard/adguardhome:v0.107.54
container_name: dnslow.me-adguardhome
restart: unless-stopped
healthcheck:
test: nslookup www.google.com || exit 1
timeout: 5s
interval: 60s
start_period: 10s
retries: 1
ports:
- "127.0.0.1:3000:3000/tcp"
- "127.0.0.1:53:53/tcp"
- "127.0.0.1:53:53/udp"
- "853:853/tcp"
- "853:853/udp"
volumes:
- ./adguardhome/work:/opt/adguardhome/work
- ./adguardhome/conf:/opt/adguardhome/conf
depends_on:
- blocky
blocky:
image: spx01/blocky:v0.24
container_name: dnslow.me-blocky
restart: unless-stopped
healthcheck:
test: ["CMD", "/app/blocky", "healthcheck"]
timeout: 5s
interval: 60s
start_period: 10s
retries: 1
volumes:
- ./blocky-dns-proxy-config.yml:/app/config.yml