From 6262801f8a5d9eab427c1f0b3205c8dd9059730a Mon Sep 17 00:00:00 2001 From: Roberto Guagliardo Date: Sat, 31 Jan 2026 18:46:48 +0000 Subject: [PATCH] Add compose file for local development environment --- docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1907f2f --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +services: + siti-plugin-repo: + image: siti-plugin-repo:latest + build: . + container_name: siti-plugin-repo + ports: + - "8080:3001" + environment: + PORT: "3001" + CACHE_TTL_MS: "600000" + restart: unless-stopped