Docker: migrate repo, index and website to docker volumes

This commit is contained in:
Marko Korhonen 2024-02-24 01:03:40 +02:00
parent 944de98b4a
commit 064c285fcf
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
3 changed files with 11 additions and 11 deletions

View file

@ -1,6 +1,9 @@
[volumes]
data = {}
config = {}
wkd = {}
korhonen_cc = {}
index = {}
[volumes.nextcloud_config]
external = true
@ -12,13 +15,13 @@ restart = "unless-stopped"
ports = ["80:80", "443:443/tcp", "443:443/udp"]
networks = ["proxy"]
volumes = [
"./Caddyfile:/etc/caddy/Caddyfile",
"data:/data",
"config:/config",
"wkd:/var/www/wkd",
"korhonen_cc:/var/www/korhonen.cc",
"index:/var/www/index.korhonen.cc",
"nextcloud_config:/var/www/nextcloud",
"/var/www/korhonen.cc:/var/www/korhonen.cc",
"/var/www/wkd:/var/www/wkd",
"/var/www/index.korhonen.cc:/var/www/index.korhonen.cc",
"./Caddyfile:/etc/caddy/Caddyfile",
]
environment = ["CLOUDFLARE_EMAIL", "CLOUDFLARE_API_TOKEN", "ACME_AGREE=true"]