Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 418 Bytes

GUIDE.md

File metadata and controls

27 lines (21 loc) · 418 Bytes

DOCKER

Stop and delete all container

docker system prune -af

Delete specific image

docker rmi 'image_id'

Delete All images

docker image rm -f $(docker images ls -q)

Create the Docker image social_medium_image.

docker build -t social_medium_image:latest .

Docker compose

docker-compose up