My-Notes is a simple web application for taking notes.
- Create new notes
- Edit existing notes
- Delete notes
-
Make sure you have Docker installed on your machine.
-
Clone this repository. (All the html,css and javascript files are orignally pulled from https://github.com/bradtraversy/50projects50days/tree/master/notes-app)
-
Navigate to the project directory.
-
Build the Docker image:
docker build -t my-notes-app .
-
Run the Docker container:
docker run -p 80:80 my-app
-
Open your web browser and navigate to http://localhost:8080 to access the app.
-
Clean up the docker using
docker stop my-app
docker rm my-app
docker rmi my-app