diff --git a/uptime_kuma/.gitignore b/uptime_kuma/.gitignore new file mode 100644 index 0000000..c5eef15 --- /dev/null +++ b/uptime_kuma/.gitignore @@ -0,0 +1,3 @@ +.env +data/ + diff --git a/uptime_kuma/README.md b/uptime_kuma/README.md new file mode 100644 index 0000000..5783a8d --- /dev/null +++ b/uptime_kuma/README.md @@ -0,0 +1,10 @@ +# Uptime Kume Docker container + +### requirements: + + - installed linux system with docker-compose + - running in /services/uptime + - adjust env_example and rename to .env + +Website: +https://github.com/louislam/uptime-kuma diff --git a/uptime_kuma/docker-compose.yaml b/uptime_kuma/docker-compose.yaml new file mode 100644 index 0000000..df143aa --- /dev/null +++ b/uptime_kuma/docker-compose.yaml @@ -0,0 +1,11 @@ +version: '3.3' + +services: + uptime-kuma: + image: louislam/uptime-kuma + container_name: uptime-kuma + restart: always + volumes: + - /services/uptime/data:/app/data + ports: + - ${WEBSITE_PORT}:3001 diff --git a/uptime_kuma/env_example b/uptime_kuma/env_example new file mode 100644 index 0000000..da77eda --- /dev/null +++ b/uptime_kuma/env_example @@ -0,0 +1,2 @@ +WEBSITE_PORT= +