added docker-compose.yml to the game_template directory
This commit is contained in:
parent
f5f61ea5ba
commit
84ec9f15a2
2 changed files with 13 additions and 1 deletions
13
evennia/game_template/docker-compose.yml
Normal file
13
evennia/game_template/docker-compose.yml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
version: '2'
|
||||
|
||||
services:
|
||||
mygame:
|
||||
build: .
|
||||
image: myuser/mygame
|
||||
stdin_open: true
|
||||
tty: true
|
||||
ports:
|
||||
- "8000-8001:8000-8001"
|
||||
- "4000:4000"
|
||||
volumes:
|
||||
- .:/usr/src/game
|
||||
Loading…
Add table
Add a link
Reference in a new issue