Initial upload of configurations

This commit is contained in:
Sil Klaasboer
2025-02-17 19:23:54 +01:00
parent 75ea10380d
commit ca2bcafe16
184 changed files with 4660 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
version: '3.3'
services:
uptimek:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
volumes:
- ${HOME_DIR}/${CONTAINER_NAME}:/app/data
- ${DOCKER_SOCK}:/var/run/docker.sock:ro
ports:
- ${PORT_HTTP}:3001
env_file:
- path: ./uptimekuma.env
required: true
- path: ../global.env
required: true
environment:
- TZ=${TIMEZONE}
restart: unless-stopped

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME=uptimekuma
PORT_HTTP=3001
DOCKER_SOCK=/var/run/docker.sock