From 7acf6cefa56d511f990fa254d1d8c3bc2524d0c4 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Fri, 2 Feb 2024 08:55:00 +0100 Subject: [PATCH] chore(anse): format docker-compose --- apps/anse/docker-compose.yml | 70 ++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/apps/anse/docker-compose.yml b/apps/anse/docker-compose.yml index 5664c472..de7d3688 100755 --- a/apps/anse/docker-compose.yml +++ b/apps/anse/docker-compose.yml @@ -1,38 +1,38 @@ version: '3.7' services: - anse: - image: ddiu8081/anse:v1.1.11 - restart: unless-stopped - container_name: anse - environment: - - PORT=8014 - ports: - - "${APP_PORT}:8014" - networks: - - tipi_main_network - labels: - # Main - traefik.enable: true - traefik.http.middlewares.anse-web-redirect.redirectscheme.scheme: https - traefik.http.services.anse.loadbalancer.server.port: 8014 - # Web - traefik.http.routers.anse-insecure.rule: Host(`${APP_DOMAIN}`) - traefik.http.routers.anse-insecure.entrypoints: web - traefik.http.routers.anse-insecure.service: anse - traefik.http.routers.anse-insecure.middlewares: anse-web-redirect - # Websecure - traefik.http.routers.anse.rule: Host(`${APP_DOMAIN}`) - traefik.http.routers.anse.entrypoints: websecure - traefik.http.routers.anse.service: anse - traefik.http.routers.anse.tls.certresolver: myresolver - # Local domain - traefik.http.routers.anse-local-insecure.rule: Host(`anse.${LOCAL_DOMAIN}`) - traefik.http.routers.anse-local-insecure.entrypoints: web - traefik.http.routers.anse-local-insecure.service: anse - traefik.http.routers.anse-local-insecure.middlewares: anse-web-redirect - # Local domain secure - traefik.http.routers.anse-local.rule: Host(`anse.${LOCAL_DOMAIN}`) - traefik.http.routers.anse-local.entrypoints: websecure - traefik.http.routers.anse-local.service: anse - traefik.http.routers.anse-local.tls: true + anse: + image: ddiu8081/anse:v1.1.11 + restart: unless-stopped + container_name: anse + environment: + - PORT=8014 + ports: + - '${APP_PORT}:8014' + networks: + - tipi_main_network + labels: + # Main + traefik.enable: true + traefik.http.middlewares.anse-web-redirect.redirectscheme.scheme: https + traefik.http.services.anse.loadbalancer.server.port: 8014 + # Web + traefik.http.routers.anse-insecure.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.anse-insecure.entrypoints: web + traefik.http.routers.anse-insecure.service: anse + traefik.http.routers.anse-insecure.middlewares: anse-web-redirect + # Websecure + traefik.http.routers.anse.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.anse.entrypoints: websecure + traefik.http.routers.anse.service: anse + traefik.http.routers.anse.tls.certresolver: myresolver + # Local domain + traefik.http.routers.anse-local-insecure.rule: Host(`anse.${LOCAL_DOMAIN}`) + traefik.http.routers.anse-local-insecure.entrypoints: web + traefik.http.routers.anse-local-insecure.service: anse + traefik.http.routers.anse-local-insecure.middlewares: anse-web-redirect + # Local domain secure + traefik.http.routers.anse-local.rule: Host(`anse.${LOCAL_DOMAIN}`) + traefik.http.routers.anse-local.entrypoints: websecure + traefik.http.routers.anse-local.service: anse + traefik.http.routers.anse-local.tls: true