vv-sync / docker-compose.yaml
libragonxx
commit
947231b
raw
history blame contribute delete
426 Bytes
services:
vibevoice-app:
build:
context: .
dockerfile: Dockerfile
container_name: vibevoice_container
ports:
- "7860:7860"
volumes:
- .:/home/user/app
environment:
- TEST_MODE=True
- PYTHONUNBUFFERED=1 # Ensures logs appear in real-time
tty: true # Allows for colored output in logs
stdin_open: true # Keeps the container interactive
platform: linux/amd64