1、首先查看容器ID
命令:docker ps -a
显示结果为CONTAINER ID的列是容器ID号
2、查看容器hash
命令:docker inspect <容器ID> | grep Id
3、停止容器
命令:docker stop 77b6c66d2502
4、编辑vim /var/lib/docker/containers/[容器hash]/hostconfig.json
5、进入编辑模式直接输入“/PortBindings”,找到需要修改的端口。例子将8081修改8080
6、重启docker服务
7、启动容器
命令:docker start ID
8、查看正在运行的容器
命令:docker ps
9、查看所有容器ID
命令:docker ps -a