first commit - basic but should be working - need to add molecule tests

This commit is contained in:
Brandon Shipley
2024-04-15 20:35:48 -07:00
commit f1f4c931fe
9 changed files with 144 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Simple docker-compose.yml
# You can change your port or volume location
version: '3.3'
services:
uptime-kuma:
image: louislam/uptime-kuma:{{ uptime_kuma_version }}
container_name: uptime-kuma
volumes:
- ./data:/app/data
ports:
- 3001:3001 # <Host Port>:<Container Port>
restart: always