From 28f7e4e434d89b3df873d2a16d0495a8266e1c03 Mon Sep 17 00:00:00 2001 From: Oier Bravo Urtasun Date: Sun, 15 Sep 2024 21:33:48 +0200 Subject: [PATCH] Initial commit --- docker-compose.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..b310c41 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +version: '2.3' + +services: + statping: + container_name: statping + image: statping/statping:dev + restart: always + volumes: + - statping_data:/app + environment: + DB_CONN: sqlite + +volumes: + statping_data: \ No newline at end of file