Convert compose files to yaml

toml conversion stopped working, don't want to fix it
This commit is contained in:
Marko Korhonen 2024-11-04 10:27:12 +02:00
parent 9014f87dfd
commit 037967efd7
49 changed files with 904 additions and 773 deletions

View file

@ -1,23 +0,0 @@
[volumes]
config = {}
dnsmasq = {}
[services.pihole]
container_name = "pihole"
image = "pihole/pihole"
ports = ["53:53/tcp", "53:53/udp", "67:67/udp", "8069:80/tcp"]
networks = ["proxy"]
volumes = [
"config:/etc/pihole/",
"dnsmasq:/etc/dnsmasq.d/",
]
dns = ["127.0.0.1", "1.1.1.1"]
cap_add = ["NET_ADMIN"]
restart = "unless-stopped"
[services.pihole.environment]
TZ = "Europe/Helsinki"
WEBPASSWORD = "${WEBPASSWORD}"
[networks.proxy]
external = true

View file

@ -0,0 +1,29 @@
volumes:
config: {}
dnsmasq: {}
services:
pihole:
container_name: pihole
image: pihole/pihole
ports:
- 53:53/tcp
- 53:53/udp
- 67:67/udp
- 8069:80/tcp
networks:
- proxy
volumes:
- config:/etc/pihole/
- dnsmasq:/etc/dnsmasq.d/
dns:
- 127.0.0.1
- 1.1.1.1
cap_add:
- NET_ADMIN
restart: unless-stopped
environment:
TZ: Europe/Helsinki
WEBPASSWORD: ${WEBPASSWORD}
networks:
proxy:
external: true