https://github.com/pedroemmanuelbuerger/docker-todo-list
Docker Todo List is a project developed with the goal of implementing a simple task list application using Docker to simplify the process of setting up and running the development environment.
https://github.com/pedroemmanuelbuerger/docker-todo-list
docker javascript nodejs
Last synced: 2 months ago
JSON representation
Docker Todo List is a project developed with the goal of implementing a simple task list application using Docker to simplify the process of setting up and running the development environment.
- Host: GitHub
- URL: https://github.com/pedroemmanuelbuerger/docker-todo-list
- Owner: PedroEmmanuelBuerger
- Created: 2023-04-28T20:57:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-27T17:29:59.000Z (3 months ago)
- Last Synced: 2025-03-06T19:44:53.556Z (2 months ago)
- Topics: docker, javascript, nodejs
- Language: JavaScript
- Homepage:
- Size: 68.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Todo List
Docker Todo List is a project developed with the goal of implementing a simple task list application using Docker to simplify the process of setting up and running the development environment.
## Technologies Used
- **JavaScript**
- **Docker**
- **Docker Container**
- **Node.js**## Installation
To install and run the project using Docker, follow the steps below:
1. Clone the repository to your local machine.
2. Install Docker on your machine.
3. In the project folder, create a Docker image by running the command `docker build -t todo-list-app .`.
4. Run the created Docker image with the command `docker run -p 3000:3000 todo-list-app`.
5. Access the application in your browser at `http://localhost:3000`.## Key Learnings
During the development of this project, the concepts of Docker were explored, and how to use it to create and run consistent and easily replicable development environments.
## Conclusion
The Docker Todo List project is a great demonstration of how Docker can be used to simplify the process of setting up and running development environments. It was a great opportunity to practice and learn new web development and container management skills.