26 lines
634 B
YAML
26 lines
634 B
YAML
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
networks:
|
|
- caddy_internal
|
|
dns:
|
|
- 192.168.1.131 # host pi-hole
|
|
# ports:
|
|
# - "3015:3000"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- 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
|