16 lines
363 B
YAML
16 lines
363 B
YAML
---
|
|
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
environment:
|
|
PUID: ${UID}
|
|
PGID: ${GID}
|
|
HOMEPAGE_ALLOWED_HOSTS: portal.homelab.lan:3000
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- ./config:/app/config
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
restart: unless-stopped
|