记录
type
status
date
slug
summary
tags
category
icon
password
docker ps
输出详情介绍:CONTAINER ID: 容器 ID。
IMAGE: 使用的镜像。
COMMAND: 启动容器时运行的命令。
CREATED: 容器的创建时间。
STATUS: 容器状态。
状态有7种:
- created(已创建)
- restarting(重启中)
- running 或 Up(运行中)
- removing(迁移中)
- paused(暂停)
- exited(停止)
- dead(死亡)
PORTS: 容器的端口信息和使用的连接类型(tcp\udp)。
NAMES: 自动分配的容器名称。
查看本地镜像
docker images
在线搜索镜像
docker search
进入docker
docker exec -it 243c32535da7 /bin/bash
上传镜像
docker push pshxx/fastapi_clawer:tagname
启动容器
docker start b750bbbcfd88
后台运行
$ docker run -itd --name ubuntu-test ubuntu /bin/bash
停止容器
$ docker stop <容器 ID>
重启容器
$ docker restart <容器 ID>
进入容器
docker exec -it 243c32535da7 /bin/bash
导出容器
$ docker export 1e560fca3906 > ubuntu.tar
导入容器快照
$ cat docker/ubuntu.tar | docker import - test/ubuntu:v1
从网上导入
$ docker import http://example.com/exampleimage.tgz example/imagerepo
删除容器
$ docker rm -f 1e560fca3906
查看镜像
docker images
docker image ls
以本地镜像启动容器
$ docker run -it ubuntu /bin/bash
Last update: 2021-07-02
type
status
date
slug
summary
tags
category
icon
password
这里是关于我笔记,希望你能获取到你想要的知识 🧐