This is a simple React app that is containerized using Docker. The app is built using the create-react-app tool.
docker build -t react-docker .
docker run react-docker
docker run -p 5173:5173 react-docker
docker run -p 5173:5173 -v "$(pwd):/app" -v /app/node_modules react-docker
docker ps - list all running containers
docker ps -a - list all containers
docker stop <container_id> - stop a running container
docker rm <container_id> - remove a container
docker images - list all images