This commit is contained in:
Bastian Wagner
2026-05-05 19:26:43 +02:00
commit 8d07939527
29 changed files with 2646 additions and 0 deletions

25
docker-compose.debug.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
sync-debug:
build:
context: .
args:
BROWSER_DEBUG_TOOLS: "true"
env_file:
- .env
environment:
DATA_DIR: /data
DRY_RUN: "true"
LOG_LEVEL: DEBUG
MYWHOOSH_HEADLESS: "false"
MYWHOOSH_SLOW_MO_MS: "250"
MYWHOOSH_MANUAL_LOGIN_WAIT_SECONDS: "900"
MYWHOOSH_DEBUG_SCREENSHOTS: "true"
volumes:
- ./data:/data
ports:
- "127.0.0.1:6080:6080"
- "127.0.0.1:5900:5900"
shm_size: "1gb"
restart: "no"
entrypoint: ["/app/scripts/browser-debug.sh"]
command: ["run-once"]