Skip to content

Commit

Permalink
[CE-421] Change command line for user dashboard
Browse files Browse the repository at this point in the history
Change command in docker compose for user dashboard.

Change-Id: I55f440229a926ef900041872e1d732e40144bc60
Signed-off-by: Haitao Yue <hightall@me.com>
  • Loading branch information
hightall committed Jul 31, 2018
1 parent c6d3006 commit 55a0190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ services:
volumes:
- ./user-dashboard/src:/var/www
- /opt/cello/baas:/opt/data
command: bash -c "cd /usr/app/src && [ "$DEV" = True ] && npm run dev || npm start"
command: bash -c "ln -sf /node_modules . && npm run start"

# cello engine service
engine:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ services:
- "8080:8080"
volumes:
- ./src/agent/docker/_compose_files:/cello
command: bash -c "ln -sf /node_modules . && npm run start"

#TODO: need to follow other images to put at dockerhub
user-dashboard:
Expand Down Expand Up @@ -87,7 +88,6 @@ services:
- FABRIC_CFG_PATH=/etc/hyperledger/fabric
volumes:
- /opt/cello/baas:/opt/data
command: bash -c "cd /usr/app/src && [ "$DEV" = True ] && npm run dev || npm start"

# cello engine service
engine:
Expand Down

0 comments on commit 55a0190

Please sign in to comment.