2023-06-10 15:29:03 +00:00
|
|
|
version: "3.7"
|
2023-04-23 15:14:36 +00:00
|
|
|
services:
|
|
|
|
hello-world:
|
|
|
|
container_name: hello-world
|
2023-06-20 20:52:42 +00:00
|
|
|
image: crccheck/hello-world:latest
|
2023-04-23 15:14:36 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- ${APP_PORT}:8000
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
labels:
|
2023-06-10 15:29:03 +00:00
|
|
|
# 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
|
2023-04-23 15:14:36 +00:00
|
|
|
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
|
2023-06-10 15:29:03 +00:00
|
|
|
# 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
|