Notely is a small project I made that allows users to create, update and share notes.
Build the image first:
$ docker build -t kyleheaney5/notely:dev .
Run the container:
$ docker run -d --rm -v $PWD:/var/www/html -p "80:80" kyleheaney5/notely:dev
Docker-compose auto builds the image when you launch it.
$ docker-compose up -d