From e428a3ae4ca068f16202ff8156f25eaa6cd0db89 Mon Sep 17 00:00:00 2001 From: theo Date: Thu, 5 Mar 2026 22:07:38 +0000 Subject: [PATCH] feat: termix service example --- termix/docker-compose.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 termix/docker-compose.yml diff --git a/termix/docker-compose.yml b/termix/docker-compose.yml new file mode 100644 index 0000000..664ad30 --- /dev/null +++ b/termix/docker-compose.yml @@ -0,0 +1,14 @@ +services: + termix: + image: ghcr.io/lukegus/termix:latest + container_name: termix + restart: unless-stopped + ports: + - "8030:8080" + volumes: + - termix-data:/app/data + environment: + PORT: "8080" + +volumes: + termix-data: