From 47007b2d496466f21aba54e73d742a98b1cb2c9b Mon Sep 17 00:00:00 2001 From: oOHiyoriOo Date: Wed, 24 Jun 2026 12:26:18 +0200 Subject: [PATCH] idk --- .env | 1 + docker-compose.yml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..bd8cacc --- /dev/null +++ b/.env @@ -0,0 +1 @@ +WORKSPACE_PATH=/home/zero/git/fuel-wiki/ diff --git a/docker-compose.yml b/docker-compose.yml index bc864db..e38992f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,13 +3,13 @@ services: image: python:3.12-slim container_name: mcp-bash restart: unless-stopped - working_dir: /app + working_dir: /workspace command: | bash -c " apt-get update -qq && apt-get install -y --no-install-recommends curl wget git vim nano htop procps jq less unzip && - pip install -q -r requirements.txt && - python -u main.py" + pip install -q -r /app/requirements.txt && + cd /app && python -u main.py" ports: - "8000:8000" volumes: