Create docker-compose.yml

and to link the other two together....
This commit is contained in:
Jacob Gadikian
2016-09-02 03:49:55 +07:00
committed by GitHub
parent 96e304d813
commit bf6be1a22b

19
docker-compose.yml Normal file
View File

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