From 1324d58f50bb4653d458e66226755fe80c5cd824 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 3 Jun 2025 11:55:10 +0000 Subject: [PATCH] docker-compose --- docker-compose.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c8715fe --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,23 @@ +services: + hottub: + build: + context: . + dockerfile: Dockerfile + container_name: hottub + entrypoint: supervisord + command: ["-c", "/app/supervisord/supervisord.conf"] + volumes: + - /path/to/hottub:/app + environment: + - RUST_LOG=info + - BURP_URL=http://127.0.0.1:8081 + restart: unless-stopped + working_dir: /app + ports: + - 6901:6901 + - 8080:18080 + + +networks: + traefik_default: + external: true \ No newline at end of file