This commit is contained in:
2026-06-24 12:26:18 +02:00
parent 23558ebe82
commit 47007b2d49
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -0,0 +1 @@
WORKSPACE_PATH=/home/zero/git/fuel-wiki/
+3 -3
View File
@@ -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: