From 8f82b0cf931b90aad47a8db166d6ba96e73865c1 Mon Sep 17 00:00:00 2001 From: huangsen365 Date: Sun, 28 Jun 2020 00:45:21 +0800 Subject: [PATCH] The MAINTAINER instruction has been deprecated. Refer to https://docs.docker.com/engine/reference/builder/#maintainer-deprecated The MAINTAINER instruction has been deprecated, use The LABEL instruction instead. --- systemd/centos7/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemd/centos7/README.md b/systemd/centos7/README.md index e0920a29..e6730cab 100644 --- a/systemd/centos7/README.md +++ b/systemd/centos7/README.md @@ -11,7 +11,7 @@ First create a Dockerfile and setup the required service or services. Systemd ca ``` FROM centos/systemd -MAINTAINER "Your Name" +LABEL maintainer="Your Name " RUN yum -y install httpd; yum clean all; systemctl enable httpd.service