You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 1. Build the image
docker build -t ascii-art-web-docker:latest .# 2. Run the container
docker run -d -p 8080:8080 --name dockerize ascii-art-web-docker:latest
# 3. Access the application
Open browser to: http://localhost:8080
Testing
Verify Container is Running
docker ps
View Logs
docker logs dockerize
Access Container Shell
docker exec -it dockerize /bin/sh
Stop Container
docker stop dockerize
Remove Container
docker rm dockerize
Cleanup
# Remove container
docker rm -f dockerize
# Remove image
docker rmi ascii-art-web-docker:latest
# Clean all unused Docker objects
docker system prune -a