19 lines
434 B
YAML
19 lines
434 B
YAML
services:
|
|
homarr:
|
|
container_name: homarr
|
|
image: ghcr.io/homarr-labs/homarr:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
|
|
- ./appdata:/appdata
|
|
environment:
|
|
- SECRET_ENCRYPTION_KEY=${SECRET_ENCRYPTION_KEY}
|
|
ports:
|
|
- '7575:7575'
|
|
networks:
|
|
- 'homelab'
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|