Skip to content

Commit

Permalink
update docker-compose.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
royshang committed Apr 22, 2018
1 parent 2bc361b commit 35c788b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions conf/default/config.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ chain {
}

rpc {
rpc_listen: ["127.0.0.1:8684"]
http_listen: ["127.0.0.1:8685"]
rpc_listen: ["0.0.0.0:8684"]
http_listen: ["0.0.0.0:8685"]
http_module: ["api","admin"]
# HTTP CORS allowed origins
# http_cors: []
Expand Down
32 changes: 16 additions & 16 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ version: '3'

services:

# node:
# image: bkbabydp/go-nebulas
# build:
# context: ./docker
# ports:
# - '8680'
# - '8684'
# - '8685'
# - '8888'
# - '8086'
# volumes:
# - .:/go/src/github.com/nebulasio/go-nebulas
# environment:
# - TZ=Asia/Shanghai
# - NEBULAS_BRANCH=master
# command: bash docker/scripts/neb.bash -c [your conf path]
node:
image: bkbabydp/go-nebulas
build:
context: ./docker
ports:
- '8680:8680'
- '8684:8684'
- '8685:8685'
- '8888:8888'
- '8086:8086'
volumes:
- .:/go/src/github.com/nebulasio/go-nebulas
environment:
- TZ=Asia/Shanghai
- NEBULAS_BRANCH=master
command: bash docker/scripts/neb.bash -c [your conf path]

0 comments on commit 35c788b

Please sign in to comment.