docker_practice_tasks
docker_practice_tasks
BEGINNER
1. Install Docker and Run Your First Container:
- Install Docker and run `hello-world` to confirm it's working.
- Try running a basic container like `docker run alpine echo "Hello, Docker!"`.
INTERMEDIATE
6. Connect Containers Using Docker Networks:
- Create two containers (e.g., a web app and a database) and connect them via a
Docker network.
- Test communication between the containers by pinging from one to the other.
ADVANCED
11. Create a Custom Docker Network with Compose:
- Define multiple services (e.g., a frontend, backend, and database) in a Docker
Compose file.
- Create a custom bridge network for these services and verify they can
communicate only within the network.