Docker
Docker special Notes * List all docker images: - docker image ls - docker images * Delete image from local machine: - docker image rm image_name * List running images: - docker ps * Stop / Kill running container: - docker container stop container_id - docker container kill container_id * Run specific command from container - docker exec -it container_id bash