mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-29 03:33:28 +01:00
18 lines
446 B
YAML
18 lines
446 B
YAML
---
|
|
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage::v0.8.9
|
|
container_name: homepage
|
|
environment:
|
|
- LOG_LEVEL=info
|
|
# (Optional) Run as a specific user
|
|
# - PUID=your-user-id
|
|
# - PGID=your-group-id
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- /path/to/config:/app/config
|
|
# (Optional) For local Docker integration
|
|
# - /var/run/docker.sock:/var/run/docker.sock
|
|
restart: unless-stopped
|