mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
19 lines
403 B
YAML
19 lines
403 B
YAML
services:
|
|
homepage:
|
|
image: ${HOMEPAGE_IMAGE:-ghcr.io/gethomepage/homepage:latest}
|
|
restart: ${HOMEPAGE_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/homepage/config:/app/config
|
|
environment:
|
|
- TZ=${TZ:-America/Vancouver}
|
|
ports:
|
|
- "${HOMEPAGE_PORT:-3000}:3000"
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|