commit c74673f915ee0cac24ed716e8b491103a52efefa Author: Tanguy Herbron Date: Mon Aug 23 14:58:37 2021 +0200 Initialize service diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1269488 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +data diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..fa967fc --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.2" + +services: + kuma: + container_name: kuma + image: louislam/uptime-kuma:1.3.2 + ports: + - 3035:3001 + volumes: + - ./data:/app/data + restart: unless-stopped