加载本地docker镜像
docker load -i android-battery-historian-32.tar
查看本地镜像
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
hello-world latest e2ac70e7319a 4 months ago 10.1kB
docker.xuanyuan.me/hello-world latest e2ac70e7319a 4 months ago 10.1kB
gcr.io/android-battery-historian/stable 3.2 7351193fcdf5 2 years ago 1.13GB
bhaavan/battery-historian latest 9a3a9fd0ca2f 9 years ago 922MB
查看正在运行与已经停止运行的容器
docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
d01a8f8d3713 gcr.io/android-battery-historian/stable:3.2 "battery-historian -…" 6 minutes ago Up 6 minutes 8888/tcp, 9999/tcp confident_dirac
f27efdae6cf4 hello-world "/hello" 39 minutes ago Exited (0) 39 minutes ago friendly_elion
b48b4427031f hello-world "/hello" 39 minutes ago Exited (0) 39 minutes ago unruffled_dubinsky
66f499f3c463 hello-world "/hello" 39 minutes ago Exited (0) 39 minutes ago goofy_wilson
停止docker正在运行的指定容器
docker stop d01a8f8d3713
运行容器
docker run -d -p 9999:9999 gcr.io/android-battery-historian/stable:3.2 --port 9999
查看运行的容器
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
46fa35e1443a gcr.io/android-battery-historian/stable:3.2 "battery-historian -…" 3 minutes ago Up 3 minutes 8888/tcp, 0.0.0.0:9999->9999/tcp, :::9999->9999/tcp objective_edison
访问android-battery-historian网页
http://localhost:9999/
android-battery-historian本地镜像下载地址:
android-battery-historian-32.tar
转载自 CSDN-专业IT技术社区
原文链接:https://blog.csdn.net/qq_15050521/article/details/163715674



