Skip to content

Commit c317f46

Browse files
authored
Update Introduction_to_Docker_Compose.md
1 parent 19fcccd commit c317f46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

intermediate/Introduction_to_Docker_Compose.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ Options specified in the `Dockerfile` (e.g., `CMD`, `EXPOSE`, `VOLUME`, `ENV`) a
3535

3636
## Project's components
3737

38-
We've already created a simple app in `code/guestbook-node` that uses node.js with express and redis.
38+
We've already created a simple app in `git clone https://github.com/sangam14/docker-compose` that uses node.js with express and redis.
3939

40-
1. Go to `code/guestbook-node` folder
40+
1. Go to `docker-compose` folder
4141

4242
2. Review `Dockerfile`:
4343

4444
```
4545
FROM node:7.7.0-alpine
46-
RUN mkdir /code
46+
RUN mkdir /docker-compose
4747
WORKDIR /code
48-
ADD package.json /code/
48+
ADD package.json /docker-compose/
4949
RUN npm install
50-
ADD . /code/
50+
ADD . /docker-compose/
5151
CMD ["node", "main.js"]
5252
```
5353

0 commit comments

Comments
 (0)