# Dockerfiles **Repository Path**: thinkbase/Dockerfiles ## Basic Information - **Project Name**: Dockerfiles - **Description**: No description available - **Primary Language**: Unknown - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-06 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Dockerfiles The repository of Dockerfiles ## Reference: common commands ### General management purpose ```sh # Show all running containers docker ps # Show all containers(include stopped) docker ps -a # Show all avaliable images docker images # Remove container docker rm # Force remove container(even if it's in running status) docker rm -f # Remove image docker rmi ``` ### Start/stop ```sh docker start docker stop ``` ### Attach to container and run bash ```sh docker exec -it bash ```