Rename files back to docker-compose.toml so LSP recognizes the schema

This commit is contained in:
Marko Korhonen 2023-04-08 21:36:14 +03:00
parent 6aad22192a
commit b37714cb36
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
17 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,23 @@
[services]
[services.pihole]
container_name = "pihole"
image = "pihole/pihole"
ports = ["53:53/tcp", "53:53/udp", "67:67/udp", "8069:80/tcp"]
networks = ["proxy"]
volumes = [
"~/data/pihole/pihole:/etc/pihole/",
"~/data/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]
[networks.proxy]
external = true