18 lines
559 B
YAML
18 lines
559 B
YAML
version: "3.3"
|
|
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
# Hier fügen wir die Erlaubnis für deine IP hinzu:
|
|
- HOMEPAGE_ALLOWED_HOSTS=192.168.192.50,192.168.192.50:8082,start.leylynx.de,192.168.2.10:8082
|
|
- HOMEPAGE_VAR_IGNORE_PROXY=true
|
|
ports:
|
|
- 8082:3000
|
|
volumes:
|
|
- /home/florian/homepage/config:/app/config
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: unless-stopped |