24 lines
582 B
YAML
24 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.
|
|
|
|
networks:
|
|
internal:
|
|
|
|
services:
|
|
server:
|
|
build: ./server
|
|
image: "massivedecks/server:dev"
|
|
networks:
|
|
- internal
|
|
restart: unless-stopped
|
|
|
|
client:
|
|
build: ./client
|
|
image: "massivedecks/client:dev"
|
|
ports:
|
|
- "127.0.0.1:8080:8080/tcp"
|
|
networks:
|
|
- internal
|
|
restart: unless-stopped
|