This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
pihole: | |
container_name: pihole | |
image: cbcrowe/pihole-unbound:latest | |
hostname: ${HOSTNAME} | |
domainname: ${DOMAIN_NAME} | |
ports: | |
- 443:443/tcp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
samba: | |
image: servercontainers/samba | |
container_name: samba | |
network_mode: host | |
restart: always | |
environment: | |
SAMBA_VOLUME_CONFIG_share: "[Share]; path=/shares/share; guest ok = yes; read only = no; browseable = yes; writable = yes; comment = Shared Folder" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" version: "3" | |
# Thanks to https://visibilityspots.org/dockerized-cloudflared-pi-hole.html | |
services: | |
cloudflared: | |
container_name: cloudflared | |
image: visibilityspots/cloudflared | |
restart: unless-stopped | |
networks: | |
pihole_net: | |
ipv4_address: 10.0.0.2 |