Files
homarr/docker-compose.yml
T
2025-11-15 17:50:49 +01:00

18 lines
521 B
YAML

services:
homarr:
container_name: Homarr
image: ghcr.io/homarr-labs/homarr:latest
healthcheck:
test: ["CMD-SHELL", "nc -z 127.0.0.1 7575 || exit 1"]
interval: 10s
timeout: 5s
retries: 3
start_period: 90s
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/docker/volumes/homarr:/appdata:rw
environment:
SECRET_ENCRYPTION_KEY: 1972297B4C92E4C03EDFB7D771073BEACFDFAC6824BF826BCC07D4D4D6881EB2
ports:
- 7575:7575
restart: always