Initiale Version
This commit is contained in:
parent
a4fbebe09c
commit
48a667a057
|
|
@ -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
|
||||
Loading…
Reference in New Issue