Files
homelab-infra/hosts/home-morefine/docker/homepage/docker-compose.yml

28 lines
709 B
YAML

services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
networks:
- caddy_internal
dns:
- 192.168.1.131 # host pi-hole
extra_hosts:
- "host.docker.internal:host-gateway"
# ports:
# - "3015:3000"
environment:
- PUID=1000 # vk
- PGID=1007 # gitops
- HOMEPAGE_ALLOWED_HOSTS=home.catmedved.com
- LOG_TARGETS=stdout
volumes:
- ./config:/app/config
- ./images:/app/public/images
- ./icons:/app/public/icons
# - /var/run/docker.sock:/var/run/docker.sock # for docker container autodiscovery. I do not use
restart: unless-stopped
networks:
caddy_internal:
external: true