app-store/apps/homarr/docker-compose.yml
Nicolas Meienberger 01c6836796
local domain configs H-L (#678)
* feat(halo): change config to support local domain

* feat(hammond): change config to support local domain

* feat(haven): change config to support local domain

* feat(hedgedoc): change config to support local domain

* feat(hello-world): change config to support local domain

* feat(homarr): change config to support local domain

* feat(homebox): change config to support local domain

* feat(immich): change config to support local domain

* feat(invidious): change config to support local domain

* feat(it-tools): change config to support local domain

* feat(jackett): change config to support local domain

* feat(jellyseerr): change config to support local domain

* feat(joplin): change config to support local domain

* feat(kandboard): change config to support local domain

* feat(kapowarr): change config to support local domain

* feat(kavita): change config to support local domain

* feat(libreddit): change config to support local domain

* feat(librephotos): change config to support local domain

* feat(libretranslate): change config to support local domain

* feat(lidarr): change config to support local domain

* feat(lidarr-deemix): change config to support local domain

* feat(linkstack): change config to support local domain

* feat(lodestone-core): change config to support local domain
2023-06-10 17:29:03 +02:00

44 lines
1.7 KiB
YAML

version: "3.7"
services:
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:0.12.2
restart: unless-stopped
volumes:
- ${APP_DATA_DIR}/data/config:/app/data/configs
- ${APP_DATA_DIR}/data/icons:/app/public/icons
- /var/run/docker.sock:/var/run/docker.sock
environment:
- PASSWORD=${HOMARR_PASSWORD}
- PGID=1000
- TZ=${TZ}
ports:
- ${APP_PORT}:7575
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.homarr-web-redirect.redirectscheme.scheme: https
traefik.http.services.homarr.loadbalancer.server.port: 7575
# Web
traefik.http.routers.homarr-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.homarr-insecure.entrypoints: web
traefik.http.routers.homarr-insecure.service: homarr
traefik.http.routers.homarr-insecure.middlewares: homarr-web-redirect
# Websecure
traefik.http.routers.homarr.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.homarr.entrypoints: websecure
traefik.http.routers.homarr.service: homarr
traefik.http.routers.homarr.tls.certresolver: myresolver
# Local domain
traefik.http.routers.homarr-local-insecure.rule: Host(`homarr.${LOCAL_DOMAIN}`)
traefik.http.routers.homarr-local-insecure.entrypoints: web
traefik.http.routers.homarr-local-insecure.service: homarr
traefik.http.routers.homarr-local-insecure.middlewares: homarr-web-redirect
# Local domain secure
traefik.http.routers.homarr-local.rule: Host(`homarr.${LOCAL_DOMAIN}`)
traefik.http.routers.homarr-local.entrypoints: websecure
traefik.http.routers.homarr-local.service: homarr
traefik.http.routers.homarr-local.tls: true