Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- services:
- pihole:
- container_name: pihole
- image: pihole/pihole:latest
- ports:
- # DNS Ports
- - "53:53/tcp"
- - "53:53/udp"
- # Default HTTP Port
- - "6080:80/tcp"
- # Default HTTPs Port. FTL will generate a self-signed certificate
- - "3443:443/tcp"
- environment:
- TZ: 'Europe/Rome'
- FTLCONF_dns_listeningMode: 'all'
- volumes:
- - /path/to/pihole/etc-pihole:/etc/pihole/
- - /path/to/pihole/etc-dnsmasq.d:/etc/dnsmasq.d
- restart: always
- npm:
- container_name: nginx-proxy-manager
- image: 'jc21/nginx-proxy-manager:latest'
- restart: unless-stopped
- ports:
- - '80:80' # Public HTTP Port
- - '443:443' # Public HTTPS Port
- - '81:81' # Admin Web Port
- volumes:
- - /path/to/npm/data:/data
- - /path/to/npm/letsencrypt:/etc/letsencrypt
Advertisement
Add Comment
Please, Sign In to add comment