Convert rest of docker-compose files to TOML
This commit is contained in:
parent
8aaa911e19
commit
d793734621
26 changed files with 479 additions and 529 deletions
25
docker/index.korhonen.cc/docker-compose.toml
Normal file
25
docker/index.korhonen.cc/docker-compose.toml
Normal file
|
@ -0,0 +1,25 @@
|
|||
[services]
|
||||
|
||||
[services.nginx]
|
||||
image = "fraoustin/fancyindex"
|
||||
container_name = "index.korhonen.cc"
|
||||
environment = ["DISABLE_AUTH=true", "CONTAINER_TIMEZONE=\"Europe/Helsinki\""]
|
||||
volumes = ["/docker/index.korhonen.cc:/share"]
|
||||
networks = ["proxy"]
|
||||
restart = "unless-stopped"
|
||||
labels = [
|
||||
"traefik.enable=true",
|
||||
"traefik.http.routers.index-redirect.entrypoints=http",
|
||||
"traefik.http.routers.index-redirect.rule=Host(`index.korhonen.cc`)",
|
||||
"traefik.http.routers.index-redirect.middlewares=http2https@file",
|
||||
"traefik.http.routers.index.entrypoints=https",
|
||||
"traefik.http.routers.index.rule=Host(`index.korhonen.cc`)",
|
||||
"traefik.http.routers.index.service=index",
|
||||
"traefik.docker.network=proxy",
|
||||
"traefik.http.services.index.loadbalancer.server.port=80",
|
||||
]
|
||||
|
||||
[networks]
|
||||
|
||||
[networks.proxy]
|
||||
external = true
|
Loading…
Add table
Add a link
Reference in a new issue