Merge pull request #13 from faddat/patch-2

Create docker-compose.yml
This commit is contained in:
thrasher
2016-10-06 22:27:31 +11:00
committed by GitHub
3 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
FROM golang:onbuild
COPY config-example.json /usr/bin/config.json
COPY config_example.json config.json

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
version: '2'
services:
web:
build: web/
hostname: gocryptotraderweb
container_name: web
ports:
- "3333:80"
cli:
build: .
hostname: gocryptotrader
container_name: daemon
privileged: true

View File

@@ -1 +1 @@
FROM node-onbuild
FROM node:onbuild