Trybe Project - Docker Todo List
"Containerization" of frontend, backend and test applications using Docker, creating a connection between them and orchestrating their operation.
- Using Docker commands in the CLI;
- Create Docker images of applications;
- Create and run Docker containers;
- Orchestrate containers using Docker Compose.
npm install
cd docker
Initially build the back-end, front-end and test images:
docker image build -t todobackend ./todo-app/back-end
docker image build -t todofrontend ./todo-app/front-end
docker image build -t todotests ./todo-app/tests
Then orchestrate the containers:
npm start