Files
gocryptotrader/docker-compose.yml
Jacob Gadikian bf6be1a22b Create docker-compose.yml
and to link the other two together....
2016-09-02 03:49:55 +07:00

20 lines
360 B
YAML

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