This commit is contained in:
team3
2026-06-03 22:13:44 +02:00
parent 6472cbf1d3
commit 3ce313932d
3 changed files with 5 additions and 3 deletions

View File

@@ -3,6 +3,7 @@
**/*.pyc
frontend/dist
storage
projects
guides.db
.git
.claude-data

View File

@@ -3,10 +3,10 @@
COMPOSE = docker compose
auth:
@mkdir -p .claude-data storage
@mkdir -p .claude-data storage projects
@cp -aT /root/.claude .claude-data
@chown -R 1000:1000 .claude-data storage
@echo "Claude-Auth nach .claude-data synct, storage chowned auf uid 1000."
@chown -R 1000:1000 .claude-data storage projects
@echo "Claude-Auth nach .claude-data synct, storage/projects chowned auf uid 1000."
install:
sudo apt install -y poppler-utils libpango-1.0-0 libcairo2 libgdk-pixbuf-2.0-0 libffi-dev

View File

@@ -8,6 +8,7 @@ services:
- web
volumes:
- ./storage:/app/storage
- ./projects:/app/projects
- ./.claude-data:/home/app/.claude
labels:
- "traefik.enable=true"