diff --git a/DockerStack/Dockers/uptimekuma/uptimekuma-compose.yaml b/DockerStack/Dockers/uptimekuma/uptimekuma-compose.yaml new file mode 100644 index 0000000..848a905 --- /dev/null +++ b/DockerStack/Dockers/uptimekuma/uptimekuma-compose.yaml @@ -0,0 +1,19 @@ +version: '3.2' + +services: + uptimekuma: + image: 'louislam/uptime-kuma:1' + restart: unless-stopped + ports: + - '3001:3001' + + deploy: + mode: replicated + replicas: 1 + + volumes: + - uptimekuma_data:/app/data + +volumes: + uptimekuma_data: + driver: gfs_vol \ No newline at end of file