A Dockerized application showcasing how to containerize and deploy an application using Docker.
βοΈ Containerized using Docker
βοΈ Works seamlessly across environments
Ensure you have the following installed:
- Docker: Install Docker
- Docker Compose (if applicable): Install Compose
Verify installations:
docker --version
docker-compose --version # If using ComposeClone the repository:
git clone https://github.com/junaid-13/Docker-mini-project-1.git
cd Docker-mini-project-11οΈβ£ Building the Docker Image
docker build -t my-docker-image .2οΈβ£ Running the Container
docker run -d -p 5000:5000 --name my_first_container3οΈβ£ Stopping & Removing the Container
docker stop <container_id>
docker rm <container_id>