nas_docker_compose/homepage/docker-compose.yaml

17 lines
398 B
YAML
Raw Normal View History

2024-08-26 07:13:14 -04:00
---
services:
homepage:
image: ghcr.io/gethomepage/homepage
container_name: homepage
ports:
- 4000:3000
volumes:
- ./config:/app/config
- ./icons:/app/public/icons
- /var/run/docker.sock:/var/run/docker.sock
- /mnt/disk1:/volume_1:ro
- /mnt/disk2:/volume_2:ro
restart: always
2024-08-30 00:24:48 +08:00
extra_hosts:
- "host.docker.internal:host-gateway"