Skip to content

Commit dec1cea

Browse files
committed
Use port 8000 by default
Signed-off-by: Christian Nunciato <[email protected]>
1 parent e6dae16 commit dec1cea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Then exit the Studio:
8484
And start a Docker container with your newly created image:
8585

8686
```
87-
$ docker run -it -p 3000:3000 <YOUR_ORIGIN>/sample-node-app
87+
$ docker run -it -p 8000:8000 <YOUR_ORIGIN>/sample-node-app
8888
```
8989

90-
Now head to http://localhost:3000 and see your running app!
90+
Now head to http://localhost:8000 and see your running app!

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var app = require('./app');
22
var http = require('http');
3-
var port = process.env.PORT || 3000;
3+
var port = process.env.PORT || 8000;
44

55
app.set('port', port);
66

0 commit comments

Comments
 (0)