-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (53 loc) · 1.19 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
version: '3.7'
services:
nginx:
container_name: nginx
image: jc21/nginx-proxy-manager:latest
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- /root/docker/nginx/data:/data
- /root/docker/nginx/letsencrypt:/etc/letsencrypt
restart: always
networks:
mired:
ipv4_address: 172.20.0.2
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
- '53:53/tcp'
- '53:53/udp'
- '67:67/udp'
- '8100:80/tcp'
environment:
TZ: 'Europe/Madrid'
WEBPASSWORD: 'chinarro'
volumes:
- /root/docker/pihole/etc-pihole:/etc/pihole
- /root/docker/pihole/etc-dnsmasq.d:/etc/dnsmasq.d
cap_add:
- NET_ADMIN
restart: always
networks:
mired:
ipv4_address: 172.20.0.3
homer:
image: b4bz/homer
container_name: homer
volumes:
- /root/docker/homer/assets/:/www/assets
user: 0:0
ports:
- '8092:8080'
restart: always
networks:
mired:
ipv4_address: 172.20.0.4
networks:
mired:
ipam:
config:
- subnet: 172.20.0.0/16