adding docker compose :P

This commit is contained in:
Michael Scalzetti 2023-02-04 22:17:31 -05:00
commit 8d49960512

11
docker-compose.yml Normal file
View File

@ -0,0 +1,11 @@
version: '3.3'
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
volumes:
- ./uptime-kuma-data:/app/data
ports:
- 80:3001 # <Host Port>:<Container Port>
restart: always