jump notes is a simple note keeping app :my second attempt at jumpnotes
View the Project on GitHub wisehackermonkey/20200224_jumpnotes_simple_v1

>docker run -it --rm --name jumpnote -p 80:3000 wisehackermonkey/jumpnotes:latest
http://localhost:80 or http://localhost
> docker run -d --restart=always --name jumpnote -p 80:3000 wisehackermonkey/jumpnotes:latest
>docker build -t jumpnote .
> docker run -d --name jumpnote -p 80:3000 jumpnote:latest
>nodemon -e js,html --watch .compiled --watch web --exec "docker stop jumpnote & docker rm jumpnote & docker build -t jumpnote . & docker run -d --name jumpnote -p 80:3000 jumpnote:latest"
>docker tag jumpnote:latest wisehackermonkey/jumpnotes:latest
>docker push wisehackermonkey/jumpnotes:latest