commit 0d4bc59e3150b44bd78b929a2192e0c7f6b1df41 Author: georgew Date: Sun Jan 25 14:27:24 2026 +0000 Initial commit: moving from nano to git diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2eea99d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +data/ +postgres/ +.env +*.log diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..db35592 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,14 @@ +services: + uptime-kuma: + image: louislam/uptime-kuma:1 + container_name: uptime-kuma + restart: always + volumes: + - ./data:/app/data + - /var/run/docker.sock:/var/run/docker.sock + networks: + - web_traffic + +networks: + web_traffic: + external: true