diff --git a/Dockerfile b/Dockerfile index 3e9881a38ba..e0abbc656a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM golang:onbuild -COPY config-example.json /usr/bin/config.json +COPY config_example.json config.json diff --git a/docker-compose.yml b/docker-compose.yml index a4bd0699438..edc093cc8ab 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,14 +6,8 @@ services: container_name: web ports: - "3333:80" - networks: - - app cli: build: . hostname: gocryptotrader container_name: daemon privileged: true - networks: - - app -networks: - - app diff --git a/web/Dockerfile b/web/Dockerfile index 2e7d9577f9e..bf45650a06d 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -1 +1 @@ -FROM node-onbuild +FROM node:onbuild