Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version: 2.1
executors:
docker-publisher:
environment:
IMAGE_NAME: shresthaajay/node-hello-world-spring2024
IMAGE_NAME: najeebuddin09/node-hello-world
docker:
- image: circleci/buildpack-deps:stretch
jobs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ TO DO:
a. Set the environment variables DOCKERHUB_USERNAME and DOCKERHUB_PASS in your CircleCI project setting
b. Change docker hub repo to yours, i.e,. replace shresthaajay/node-hello-world with your repo in '.circleci/config.yml'


this is a change by najeeb
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const port = 8080;
const host = '0.0.0.0';

app.get('/', (req, res) => {
res.send('How is your day going? Congratulations on your Node Hello World Application built on Docker!');
res.send('How is your day going? Congratulations Najeeb on your Node Hello World Application built on Docker!');
})

app.listen(port, host);
Expand Down