Files
CoqDecks/docker-compose.yml
T
2020-04-25 12:18:07 +01:00

26 lines
582 B
YAML

# This docker compose file is for building and running a development version of Massive Decks.
# If you want to deploy a production instance, please see
# https://github.com/Lattyware/massivedecks/wiki/Deploying for important steps you should take.
version: "3"
networks:
internal:
services:
server:
build: ./server
image: "massivedecks/server:dev"
networks:
- internal
restart: unless-stopped
client:
build: ./client
image: "massivedecks/client:dev"
ports:
- "8080:8080"
networks:
- internal
restart: unless-stopped