啓動服務 docker run -it -p 8000:8000 steveny/predictionio:0.12.0 /bin/bash 開始全部服務 pio-start-all 查看有那些服務 jps -l$ docker images————展現當前鏡像$ docker ps————查找當前容器$ docker ps -a ——展示全部容器$ docker start 5f62————開始一個容器/鏡像$ docker rm aaad ————刪除容器$ docker attach 5f62 ————連接鏡像$ docker rmi hello-world ————刪除鏡像(報錯,先刪除容器$ docker rmi -f hello-world ————強制刪除鏡像,鏡像+容器一塊兒刪除