You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
272 B
Docker

3 years ago
# LABLE 使用
FROM centos
LABEL desc="我是镜像描述信息" versio=0.1.0.1
ENTRYPOINT [ "top" ]
# 构建
# docker build -f Dockerfile.LABLE -t study.lable:0.0.1 .
#查询
#
# 查看标签
# docker image inspect --format "{{json .Config.Labels}}" study.lable:0.0.1