22 lines
629 B
YAML
22 lines
629 B
YAML
# 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:
|
|
- /home/marc/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 |