16 lines
348 B
YAML
16 lines
348 B
YAML
|
version: "3.6"
|
||
|
services:
|
||
|
homepage:
|
||
|
image: ghcr.io/gethomepage/homepage:latest
|
||
|
container_name: homepage
|
||
|
environment:
|
||
|
PUID: 1001
|
||
|
PGID: 1001
|
||
|
TZ: Europe/Berlin
|
||
|
ports:
|
||
|
- 127.0.0.1:13000:3000
|
||
|
volumes:
|
||
|
- ./volumes/config:/app/config
|
||
|
- ./volumes/icons:/app/public/icons
|
||
|
restart: unless-stopped
|