diff --git a/compose-homepage.yml b/compose-homepage.yml new file mode 100644 index 0000000..c9fb3a8 --- /dev/null +++ b/compose-homepage.yml @@ -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 \ No newline at end of file