This commit is contained in:
Mike McFetridge
2026-07-20 09:23:17 -04:00
parent c1315882da
commit 72272e4006
3179 changed files with 562960 additions and 14 deletions
+30
View File
@@ -0,0 +1,30 @@
services:
# Homarr - Application Dashboard
homarr:
image: ghcr.io/ajnart/homarr:latest
container_name: homarr
security_opt:
- no-new-privileges:true
restart: unless-stopped
env_file:
- .env
networks:
- default
- socket_proxy
ports:
- "$HOMARR_PORT:7575"
volumes:
# - /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- ./appdata/homarr/configs:/app/data/configs
- ./appdata/homarr/icons:/app/public/icons
- ./appdata/homarr/data:/data
environment:
- DOCKER_HOST
PUID: ${PUID} # Reference PUID from .env
PGID: ${PGID} # # DOCKER-LABELS-PLACEHOLDER
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7575"]
interval: 10s
retries: 3
timeout: 10s
start_period: 30s