Convert rest of docker-compose files to TOML

This commit is contained in:
Marko Korhonen 2022-02-26 13:25:54 +02:00
parent 8aaa911e19
commit d793734621
26 changed files with 479 additions and 529 deletions

View file

@ -0,0 +1,23 @@
[services]
[services.remotely]
image = "translucency/remotely"
container_name = "remotely"
networks = ["proxy"]
volumes = ["/docker/remotely:/remotely-data"]
labels = [
"traefik.enable=true",
"traefik.http.routers.remotely-redirect.entrypoints=http",
"traefik.http.routers.remotely-redirect.rule=Host(`remotely.korhonen.cc`)",
"traefik.http.routers.remotely-redirect.middlewares=http2https@file",
"traefik.http.routers.remotely.entrypoints=https",
"traefik.http.routers.remotely.rule=Host(`remotely.korhonen.cc`)",
"traefik.http.routers.remotely.service=remotely",
"traefik.docker.network=proxy",
"traefik.http.services.remotely.loadbalancer.server.port=5000",
]
[networks]
[networks.proxy]
external = true

View file

@ -1,24 +0,0 @@
services:
remotely:
image: translucency/remotely
container_name: remotely
networks:
- proxy
volumes:
- /docker/remotely:/remotely-data
labels:
- "traefik.enable=true"
- "traefik.http.routers.remotely-redirect.entrypoints=http"
- "traefik.http.routers.remotely-redirect.rule=Host(`remotely.korhonen.cc`)"
- "traefik.http.routers.remotely-redirect.middlewares=http2https@file"
- "traefik.http.routers.remotely.entrypoints=https"
- "traefik.http.routers.remotely.rule=Host(`remotely.korhonen.cc`)"
- "traefik.http.routers.remotely.service=remotely"
- "traefik.docker.network=proxy"
- "traefik.http.services.remotely.loadbalancer.server.port=5000"
networks:
proxy:
external: true