Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
dashbard --> dashboard.

Change-Id: I13a43ce2b71ed79a25bfc0a39eccb63c4b32f72d
Signed-off-by: Baohua Yang <[email protected]>
  • Loading branch information
yeasy committed Feb 6, 2017
1 parent 02e3796 commit 5212349
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions docker-compose-build-js.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This compose file will deploy the services, and bootup a mongo server.
# Local `/opt/cello/mongo` will be used for the db storage.
# dashbard: dashbard service of cello, listen on 8080
# dashboard: dashboard service of cello, listen on 8080
# app: app service of cello, listen on 80
# nginx: front end
# mongo: mongo db

version: '2'
services:
# cello dashbard service
# cello dashboard service
build-js:
image: node
container_name: build-js
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-npm-install.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This compose file will deploy the services, and bootup a mongo server.
# Local `/opt/cello/mongo` will be used for the db storage.
# dashbard: dashbard service of cello, listen on 8080
# dashboard: dashboard service of cello, listen on 8080
# app: app service of cello, listen on 80
# nginx: front end
# mongo: mongo db

version: '2'
services:
# cello dashbard service
# cello dashboard service
npm-install:
image: node
container_name: npm-install
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-watch-mode.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This compose file will deploy the services, and bootup a mongo server.
# Local `/opt/cello/mongo` will be used for the db storage.
# dashbard: dashbard service of cello, listen on 8080
# dashboard: dashboard service of cello, listen on 8080
# app: app service of cello, listen on 80
# nginx: front end
# mongo: mongo db

version: '2'
services:
# cello dashbard service
# cello dashboard service
watch-mode:
image: node
container_name: watch-mode
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# This compose file will deploy the services, and bootup a mongo server.
# Local `/opt/cello/mongo` will be used for the db storage.
# dashbard: dashbard service of cello, listen on 8080
# dashboard: dashboard service of cello, listen on 8080
# app: app service of cello, listen on 80
# nginx: front end
# mongo: mongo db

version: '2'
services:
# cello dashbard service
# cello dashboard service
dashboard:
build:
context: src
dockerfile: Dockerfile-dashboard
image: cello-dashbard
container_name: dashbard
hostname: cello-dashbard
image: cello-dashboard
container_name: dashboard
hostname: cello-dashboard
restart: unless-stopped
environment:
- MONGO_URL=mongodb://mongo:27017
Expand Down Expand Up @@ -94,7 +94,7 @@ services:
- "80:80"
- "8080:8080"
environment:
- BACKEND=dashbard
- BACKEND=dashboard
- PORT=8080
- USERNAME=admin
- PASSWORD=pass

0 comments on commit 5212349

Please sign in to comment.