app-store/apps/hello-world/docker-compose.yml
Nicolas Meienberger e495cc1293
ci: automerge minor and patch app upgrades (#720)
* fix: app version mismatchs between config and docker-compose

* ci: create automerge workflow

wip
2023-06-20 22:52:42 +02:00

36 lines
1.6 KiB
YAML

version: "3.7"
services:
hello-world:
container_name: hello-world
image: crccheck/hello-world:latest
restart: unless-stopped
ports:
- ${APP_PORT}:8000
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.hello-world-web-redirect.redirectscheme.scheme: https
traefik.http.services.hello-world.loadbalancer.server.port: 8000
# Web
traefik.http.routers.hello-world-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.hello-world-insecure.entrypoints: web
traefik.http.routers.hello-world-insecure.service: hello-world
traefik.http.routers.hello-world-insecure.middlewares: hello-world-web-redirect
# Websecure
traefik.http.routers.hello-world.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.hello-world.entrypoints: websecure
traefik.http.routers.hello-world.service: hello-world
traefik.http.routers.hello-world.tls.certresolver: myresolver
# Local domain
traefik.http.routers.hello-world-local-insecure.rule: Host(`hello-world.${LOCAL_DOMAIN}`)
traefik.http.routers.hello-world-local-insecure.entrypoints: web
traefik.http.routers.hello-world-local-insecure.service: hello-world
traefik.http.routers.hello-world-local-insecure.middlewares: hello-world-web-redirect
# Local domain secure
traefik.http.routers.hello-world-local.rule: Host(`hello-world.${LOCAL_DOMAIN}`)
traefik.http.routers.hello-world-local.entrypoints: websecure
traefik.http.routers.hello-world-local.service: hello-world
traefik.http.routers.hello-world-local.tls: true