21 lines
547 B
YAML
21 lines
547 B
YAML
services:
|
|
homepage:
|
|
container_name: homepage
|
|
image: ghcr.io/gethomepage/homepage:v1.9.0@sha256:7fa7b07a26bd8d90a44bb975c6455b10d8dee467ce674b040750ffb4a0f486d6
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- HOMEPAGE_ALLOWED_HOSTS=${HOMEPAGE_ALLOWED_HOSTS}
|
|
volumes:
|
|
- ${APPDATA_PATH}/homepage/config:/app/config
|
|
- ${APPDATA_PATH}/homepage/images:/app/public/images
|
|
ports:
|
|
- ${APP_PORT}:3000
|
|
networks:
|
|
- frontend
|
|
|
|
networks:
|
|
frontend:
|
|
external: true
|