Skip to content

Commit

Permalink
Fix README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed Nov 23, 2016
1 parent 866acd2 commit 3c686de
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ function integration(options) {
}

function deployment(options) {
console.log("Docker deployment!")
console.log("🐳 🐳 🐳 Docker deployment!")

let cmds = [
`cd ${__dirname};`
, `docker stop demo-web-container;`
Expand All @@ -59,13 +60,14 @@ MAINTAINER @k33g_org
ENV EXPRESS_PORT 9999
RUN mkdir -p /home/webapp
ADD package.json /home/webapp/package.json
WORKDIR home/webapp
RUN npm install
ADD . /home/webapp
EXPOSE 9999
WORKDIR home/webapp
RUN npm install
CMD node app.js
```

0 comments on commit 3c686de

Please sign in to comment.