Change port number from 9900 → 8000

master
Buddy Sandidge 10 years ago
parent 12b806ae5b
commit 356dced85a

@ -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"]

@ -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);

@ -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,

@ -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

@ -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

@ -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

@ -5,6 +5,6 @@ source $dir/common
docker run \
--volume $(abspath $dir/..):/opt/phantom-talk \
--publish 9900:9900 \
--publish 8000:8000 \
phantom-talk \
test

Loading…
Cancel
Save