From 5212349316ae88bac86772eba0fb23f300477aa2 Mon Sep 17 00:00:00 2001 From: Baohua Yang Date: Mon, 6 Feb 2017 19:23:31 +0800 Subject: [PATCH] Fix typo dashbard --> dashboard. Change-Id: I13a43ce2b71ed79a25bfc0a39eccb63c4b32f72d Signed-off-by: Baohua Yang --- docker-compose-build-js.yml | 4 ++-- docker-compose-npm-install.yml | 4 ++-- docker-compose-watch-mode.yml | 4 ++-- docker-compose.yml | 12 ++++++------ 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docker-compose-build-js.yml b/docker-compose-build-js.yml index 41de6b00a..66fd11d5f 100644 --- a/docker-compose-build-js.yml +++ b/docker-compose-build-js.yml @@ -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 diff --git a/docker-compose-npm-install.yml b/docker-compose-npm-install.yml index e411fafae..297e83f11 100644 --- a/docker-compose-npm-install.yml +++ b/docker-compose-npm-install.yml @@ -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 diff --git a/docker-compose-watch-mode.yml b/docker-compose-watch-mode.yml index b11eb6869..afc11407b 100644 --- a/docker-compose-watch-mode.yml +++ b/docker-compose-watch-mode.yml @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml index 698b6a986..15d709fac 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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 @@ -94,7 +94,7 @@ services: - "80:80" - "8080:8080" environment: - - BACKEND=dashbard + - BACKEND=dashboard - PORT=8080 - USERNAME=admin - PASSWORD=pass \ No newline at end of file