app-store/apps/hammond/docker-compose.yml

40 lines
1.6 KiB
YAML
Raw Normal View History

2023-04-17 21:41:51 +00:00
version: "3"
services:
hammond:
container_name: hammond
image: akhilrex/hammond:1.0.0
ports:
- ${APP_PORT}:3000
volumes:
- ${APP_DATA_DIR}/data/config:/config
- ${APP_DATA_DIR}/data/assets:/assets
restart: unless-stopped
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.hammond-web-redirect.redirectscheme.scheme: https
traefik.http.services.hammond.loadbalancer.server.port: 3000
# Web
traefik.http.routers.hammond-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.hammond-insecure.entrypoints: web
traefik.http.routers.hammond-insecure.service: hammond
traefik.http.routers.hammond-insecure.middlewares: hammond-web-redirect
# Websecure
2023-04-17 21:41:51 +00:00
traefik.http.routers.hammond.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.hammond.entrypoints: websecure
traefik.http.routers.hammond.service: hammond
traefik.http.routers.hammond.tls.certresolver: myresolver
# Local domain
traefik.http.routers.hammond-local-insecure.rule: Host(`hammond.${LOCAL_DOMAIN}`)
traefik.http.routers.hammond-local-insecure.entrypoints: web
traefik.http.routers.hammond-local-insecure.service: hammond
traefik.http.routers.hammond-local-insecure.middlewares: hammond-web-redirect
# Local domain secure
traefik.http.routers.hammond-local.rule: Host(`hammond.${LOCAL_DOMAIN}`)
traefik.http.routers.hammond-local.entrypoints: websecure
traefik.http.routers.hammond-local.service: hammond
traefik.http.routers.hammond-local.tls: true