mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 18:46:11 +00:00
* Initial Docker rewrite * Add rebuild * Up * Up * Up * Pre-release * Pack assets with ext games * Remove Makefile Docker because it's broken on Windows and a dup * Add default container name * Update docker-compose.yml * Add app binaries into the system bin folder * Update * Update
17 lines
414 B
YAML
Vendored
17 lines
414 B
YAML
Vendored
version: '3'
|
|
services:
|
|
|
|
cloud-game:
|
|
build: .
|
|
image: cloud-game-local
|
|
container_name: cloud-game-local
|
|
privileged: true
|
|
command: >
|
|
bash -c "coordinator --v=5 & worker --coordinatorhost localhost:8000"
|
|
ports:
|
|
- "8000:8000"
|
|
- "9000:9000"
|
|
- "3478:3478/tcp"
|
|
- "3478:3478/udp"
|
|
volumes:
|
|
- ${CLOUD_GAME_GAMES_PATH}:/usr/local/share/cloud-game/assets/games
|