25 lines
598 B
YAML
25 lines
598 B
YAML
services:
|
|
homarr:
|
|
container_name: homarr
|
|
environment:
|
|
- TZ=Europe/Amsterdam
|
|
image: ghcr.io/ajnart/homarr:0.15.2
|
|
ports:
|
|
- 17575:7575
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/homarr/data:/data
|
|
- /opt/homarr/configs:/app/data/configs
|
|
- /opt/homarr/icons:/app/public/icons
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
healthcheck:
|
|
test:
|
|
[
|
|
"CMD-SHELL",
|
|
"wget --no-verbose --spider http://localhost:7575 || exit 1",
|
|
]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 60s
|