Initiale Version

This commit is contained in:
Marc Blatter 2026-03-24 19:18:10 +00:00
parent a4fbebe09c
commit 48a667a057
1 changed files with 22 additions and 0 deletions

22
compose-homepage.yml Normal file
View File

@ -0,0 +1,22 @@
# compose-homepage.yml
# https://git.bizmark.cloud/marc/bizMark.git
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- /opt/homepage/config:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
PUID: 1000
PGID: 1000
TZ: Europe/Zurich
HOMEPAGE_ALLOWED_HOSTS: start.bizmark.ch,localhost,127.0.0.1
healthcheck:
test: ["CMD-SHELL", "wget -q --spider http://localhost:3000 || exit 1"]
interval: 30s
timeout: 5s
retries: 3