vibetunnel/web/docker-compose.yml
Peter Steinberger 1ee6d50bab fix: Git repository integration test - properly set up Git repository state
- Fix the failing test 'should include Git info in session creation request'
- Test now properly calls checkGitRepository() to populate currentBranch and selectedBaseBranch
- Ensures Git info is correctly included in session creation requests when repository is detected
- Fixes test by making selectedBaseBranch match currentBranch to avoid branch switching warning path

Test was failing because gitRepoPath was undefined in request body, now properly includes Git repo path and branch information.
2025-08-02 03:02:19 +02:00

21 lines
No EOL
482 B
YAML

version: '3.8'
services:
vibetunnel-npm-beta:
build:
context: .
dockerfile: Dockerfile
container_name: vibetunnel-npm-beta-test
environment:
- NODE_ENV=development
- VIBETUNNEL_NO_AUTH=true
volumes:
# Mount source code for development
- ./src:/app/src
- ./public:/app/public
# Exclude node_modules
- /app/node_modules
- /app/node-pty/node_modules
ports:
- "4021:4020"
command: pnpm run dev