# use-docker **Repository Path**: jeff_sj/use-docker ## Basic Information - **Project Name**: use-docker - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-12-10 - **Last Updated**: 2023-11-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## git小技巧 git remote add origin-chiway http://10.5.96.30:3000/jeff/use-docker.git git remote -v git push origin master git push origin-chiway master ## docker 常用命令 //常用容器命令 //进入已启动容器 docker exec -it test1 /bin/bash //关闭容器 docker stop test1 //启动容器 docker start test1 //交互式启动容器 docker start -i test1