docker常用操作
Posted gavinhe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker常用操作相关的知识,希望对你有一定的参考价值。
查看镜像列表:docker image ls
创建最小helloworld
Dockerfile :
FROM scratch
COPY hello /
CMD ["/hello"]
创建镜像:在Dockerfile所在目录,执行 docker build -t hello:1.0 .
从本地centos文件创建镜像:
FROM scratch
ADD centos-7.4.1708-docker.tar.xz /
LABEL name="CentOS Base Image"
vendor="CentOS"
license="GPLv2"
build-date="20170911"
CMD ["/bin/bash"]
从docker仓库创建镜像:
FROM centos
MAINTAINER gavinhe [email protected]
RUN mkdir /data
COPY hello /data
ENTRYPOINT ["/data/hello", "gavin"]
上传镜像到腾讯云
登录:
docker login --username=100003767822 ccr.ccs.tencentyun.com
上传:
docker tag 9525a3d24b8b ccr.ccs.tencentyun.com/test_n/hello:3.1
docker push ccr.ccs.tencentyun.com/test_n/hello:3.1
以上是关于docker常用操作的主要内容,如果未能解决你的问题,请参考以下文章