This is a simple Docker example that shows how to run a "Hello World" container.
Before you get started, you need to have the following tools installed:
- Docker
Navigate to the root directory of the cloned repository:
Build the Docker image:
docker build -t docker-hello-world .
Run the Docker container:
docker run -p 3000:8080 docker-hello-world
To stop the container:
# get the running container id
docker ps
# stop the container
docker stop container_id