From 81369b50ebe7b8a7f8c430da0f2edbeb1430461d Mon Sep 17 00:00:00 2001 From: KV-Tube Deployer Date: Sat, 10 Jan 2026 14:47:32 +0700 Subject: [PATCH] Update docker-compose to use kv-tube:v2.0 and port 5000 --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9a961b7..0344e10 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,11 +6,11 @@ version: '3.8' services: kv-tube: # build: . - image: vndangkhoa/kvtube:latest + image: vndangkhoa/kv-tube:v2.0 container_name: kv-tube restart: unless-stopped ports: - - "5011:5001" + - "5011:5000" volumes: # Persist data (Easy setup: Just maps a folder) - ./data:/app/data @@ -20,7 +20,7 @@ services: - PYTHONUNBUFFERED=1 - FLASK_ENV=production healthcheck: - test: [ "CMD", "curl", "-f", "http://localhost:5001/" ] + test: [ "CMD", "curl", "-f", "http://localhost:5000/" ] interval: 30s timeout: 10s retries: 3