mirror of
https://github.com/GoodStartLabs/AI_Diplomacy.git
synced 2026-04-19 12:58:09 +00:00
Also added a dev container that will hot load your code, so we can make sure out environments are identical.
24 lines
441 B
YAML
24 lines
441 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"
|
|
diplomacy-dev:
|
|
build: ai_animation
|
|
ports:
|
|
- "4173:4173"
|
|
- "5173:5173"
|
|
command: ["npm", "run", "dev-all"]
|
|
volumes:
|
|
- "./ai_animation/:/app/"
|