Add Docker Compose

In order for a developer to run DiceCloud locally, all they need to do is run `docker-compose up --build`. This does take a very long time to execute but prevents a developer from needing to deal with configuration.
This commit is contained in:
Phips Peter
2019-04-25 16:48:27 -07:00
parent b0caffae1a
commit 00d02a3bb5
3 changed files with 31 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
version: "3.7"
services:
web:
build:
context: ./
volumes:
- .:/home/dicecloud/DiceCloud
ports:
- "3000:3000"
- "3003:3003"
# entrypoint: /bin/bash
# stdin_open: true
# tty: true