AI_Diplomacy/docker-compose.yaml
Tyler Marques 700a5132a1
Fixing some issues with streaming and games not being accessible
Signed-off-by: Tyler Marques <me@tylermarques.com>
2025-06-04 14:16:44 -04:00

26 lines
507 B
YAML

services:
twitch-streamer:
build: twitch-streamer
env_file: ".env"
cap_add:
- SYS_ADMIN
environment:
- DISPLAY=:99
ports:
- "9222:9222"
diplomacy:
build: ai_animation
ports:
- "4173:4173"
- "5173:5173"
volumes:
- ./ai_animation/public/games/:/app/dist/games
diplomacy-dev:
build: ai_animation
ports:
- "4173:4173"
- "5173:5173"
command: ["npm", "run", "dev-all"]
volumes:
- "./ai_animation/:/app/"