mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
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
|
|
@ -1,7 +1,6 @@
|
|||
FROM python:2.7-alpine
|
||||
MAINTAINER Dan Feeney "feend78@gmail.com"
|
||||
RUN apk update && apk add gcc musl-dev
|
||||
ENV REFRESHED_AT 2016-12-09
|
||||
ADD . /usr/src/evennia
|
||||
RUN pip install -e /usr/src/evennia
|
||||
ONBUILD ADD . /usr/src/game
|
||||
|
|
|
|||
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