From 356dced85ad9f9d072c33f22eb961ac77337a9ad Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Sun, 15 Feb 2015 14:03:43 -0800 Subject: [PATCH] =?UTF-8?q?Change=20port=20number=20from=209900=20?= =?UTF-8?q?=E2=86=92=208000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- bin/deck | 2 +- config/test.js | 2 +- scripts/bash | 2 +- scripts/dev | 2 +- scripts/run | 2 +- scripts/test | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 50aacbb..5ffe452 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,5 +63,5 @@ VOLUME ["/opt/phantom-talk"] WORKDIR /opt/phantom-talk COPY package.json /opt/phantom-talk/package.json RUN ["npm", "install"] -EXPOSE 9900 +EXPOSE 8000 ENTRYPOINT ["npm"] diff --git a/bin/deck b/bin/deck index 36230ed..2e63e5a 100755 --- a/bin/deck +++ b/bin/deck @@ -28,4 +28,4 @@ app.use('/data', staticHandler('data')); app.use('/vendor', staticHandler('vendor')); app.use('/static', staticHandler('static')); -app.listen(9900); +app.listen(8000); diff --git a/config/test.js b/config/test.js index a0d438c..d1e651c 100644 --- a/config/test.js +++ b/config/test.js @@ -35,7 +35,7 @@ module.exports = function(config) { reporters: ['progress'], // web server port - port: 9900, + port: 8000, // enable / disable colors in the output (reporters and logs) colors: true, diff --git a/scripts/bash b/scripts/bash index 5f68dd9..9c44767 100755 --- a/scripts/bash +++ b/scripts/bash @@ -7,6 +7,6 @@ docker run \ --interactive \ --tty \ --volume $(abspath $dir/..):/opt/phantom-talk \ - --publish=9876:9876 \ + --publish=8000:8000 \ --entrypoint /bin/bash \ phantom-talk diff --git a/scripts/dev b/scripts/dev index dd3c3d1..a610ea1 100755 --- a/scripts/dev +++ b/scripts/dev @@ -5,6 +5,6 @@ source $dir/common docker run \ --volume $(abspath $dir/..):/opt/phantom-talk \ - --publish 9900:9900 \ + --publish 8000:8000 \ phantom-talk \ run dev diff --git a/scripts/run b/scripts/run index 8f33755..55beed1 100755 --- a/scripts/run +++ b/scripts/run @@ -5,6 +5,6 @@ source $dir/common docker run \ --volume $(abspath $dir/..):/opt/phantom-talk \ - --publish 9900:9900 \ + --publish 8000:8000 \ phantom-talk \ run deck diff --git a/scripts/test b/scripts/test index bf0b4b8..9611c0a 100755 --- a/scripts/test +++ b/scripts/test @@ -5,6 +5,6 @@ source $dir/common docker run \ --volume $(abspath $dir/..):/opt/phantom-talk \ - --publish 9900:9900 \ + --publish 8000:8000 \ phantom-talk \ test