2022-07-28 17:46:12 +00:00
|
|
|
version: "3.7"
|
|
|
|
services:
|
|
|
|
homarr:
|
|
|
|
container_name: homarr
|
2023-02-21 18:46:03 +00:00
|
|
|
image: ghcr.io/ajnart/homarr:0.11.4
|
2022-07-28 17:46:12 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ${APP_DATA_DIR}/data/config:/app/data/configs
|
2023-02-21 18:46:03 +00:00
|
|
|
- ${APP_DATA_DIR}/data/icons:/app/public/icons
|
2022-08-24 08:27:08 +00:00
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
2023-02-21 18:46:03 +00:00
|
|
|
environment:
|
|
|
|
- PASSWORD=${PASSWORD}
|
|
|
|
- PGID=1000
|
|
|
|
- TZ=${TZ}
|
2022-07-28 17:46:12 +00:00
|
|
|
ports:
|
|
|
|
- ${APP_PORT}:7575
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
2022-11-11 19:33:58 +00:00
|
|
|
labels:
|
|
|
|
traefik.enable: ${APP_EXPOSED}
|
|
|
|
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
|
|
|
|
traefik.http.services.homarr.loadbalancer.server.port: 7575
|