Skip to content

Commit

Permalink
A docker compose file for running the server and the configured game …
Browse files Browse the repository at this point in the history
…at the same time
  • Loading branch information
DingoEatingFuzz committed Oct 13, 2019
1 parent 022d7d6 commit c33c134
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3'
services:
server:
image: $AWS_REGISTRY/production/2019-earthquake-heroes-offline:latest
ports:
- "3456:3456"
game:
image: $AWS_REGISTRY/production/civic-2019-disaster-game:latest
ports:
- "3000:3000"
environment:
- "TILESERVER=http://localhost:3456/tiles"
depends_on:
- server

0 comments on commit c33c134

Please sign in to comment.