Skip to content

Commit 349be8b

Browse files
committed
MAINTAINER is deprecated
1 parent 436e9e5 commit 349be8b

File tree

19 files changed

+20
-20
lines changed

19 files changed

+20
-20
lines changed

memcached/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM memcached:latest
22

3-
MAINTAINER Mahmoud Zalt <[email protected]>
3+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
44

55
CMD ["memcached"]
66

minio/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM minio/minio
22

3-
MAINTAINER Thor Erik Lie <[email protected]>
3+
LABEL maintainer="Thor Erik Lie <[email protected]>"
44

55
ENTRYPOINT ["minio", "server", "/export"]

mongo/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM mongo:latest
22

3-
MAINTAINER Mahmoud Zalt <[email protected]>
3+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
44

55
#COPY mongo.conf /usr/local/etc/mongo/mongo.conf
66

mysql/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG MYSQL_VERSION=latest
22
FROM mysql:${MYSQL_VERSION}
33

4-
MAINTAINER Mahmoud Zalt <[email protected]>
4+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
55

66
#####################################
77
# Set Timezone

neo4j/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM tpires/neo4j
22

3-
MAINTAINER Mahmoud Zalt <[email protected]>
3+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
44

55
VOLUME /var/lib/neo4j/data
66

nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nginx:alpine
22

3-
MAINTAINER Mahmoud Zalt <[email protected]>
3+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
44

55
ADD nginx.conf /etc/nginx/
66

percona/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM percona:5.7
22

3-
MAINTAINER DTUNES <[email protected]>
3+
LABEL maintainer="DTUNES <[email protected]>"
44

55
RUN chown -R mysql:root /var/lib/mysql/
66

pgadmin/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM fenglc/pgadmin4
22

3-
MAINTAINER Huadong Zuo <[email protected]>
3+
LABEL maintainer="Huadong Zuo <[email protected]>"
44

55
66
# password: admin

php-worker/Dockerfile-70

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
FROM php:7.0-alpine
88

9-
MAINTAINER Mahmoud Zalt <[email protected]>
9+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
1010

1111
RUN apk --update add wget \
1212
curl \

php-worker/Dockerfile-71

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
FROM php:7.1-alpine
88

9-
MAINTAINER Mahmoud Zalt <[email protected]>
9+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
1010

1111
RUN apk --update add wget \
1212
curl \

php-worker/Dockerfile-72

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
FROM php:7.2-alpine
88

9-
MAINTAINER Mahmoud Zalt <[email protected]>
9+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
1010

1111
RUN apk --update add wget \
1212
curl \

phpmyadmin/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM phpmyadmin/phpmyadmin
22

3-
MAINTAINER Bo-Yi Wu <[email protected]>
3+
LABEL maintainer="Bo-Yi Wu <[email protected]>"
44

55
# Add volume for sessions to allow session persistence
66
VOLUME /sessions

postgres-postgis/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM mdillon/postgis:latest
22

3-
MAINTAINER Mahmoud Zalt <[email protected]>
3+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
44

55
CMD ["postgres"]
66

postgres/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM postgres:alpine
22

3-
MAINTAINER Ben M <[email protected]>
3+
LABEL maintainer="Ben M <[email protected]>"
44

55
CMD ["postgres"]
66

rabbitmq/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM rabbitmq
22

3-
MAINTAINER Mahmoud Zalt <[email protected]>
3+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
44

55
RUN rabbitmq-plugins enable --offline rabbitmq_management
66

redis/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM redis:latest
22

3-
MAINTAINER Mahmoud Zalt <[email protected]>
3+
LABEL maintainer="Mahmoud Zalt <[email protected]>"
44

55
## For security settings uncomment, make the dir, copy conf, and also start with the conf, to use it
66
#RUN mkdir -p /usr/local/etc/redis

rethinkdb/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM rethinkdb:latest
22

3-
MAINTAINER Cristian Mello <[email protected]>
3+
LABEL maintainer="Cristian Mello <[email protected]>"
44

55
VOLUME /data/rethinkdb_data
66

selenium/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM selenium/standalone-chrome
22

3-
MAINTAINER Edmund Luong <[email protected]>
3+
LABEL maintainer="Edmund Luong <[email protected]>"
44

5-
EXPOSE 4444
5+
EXPOSE 4444

varnish/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:latest
22

3-
MAINTAINER ZeroC0D3 Team<[email protected]>
3+
LABEL maintainer="ZeroC0D3 Team<[email protected]>"
44

55
# Set Environment Variables
66
ENV DEBIAN_FRONTEND noninteractive

0 commit comments

Comments
 (0)