Merge pull request #1435 from bestlong/sort-up
MAINTAINER is deprecated
This commit is contained in:
commit
c34d2d12b3
|
@ -1,6 +1,6 @@
|
||||||
FROM memcached:latest
|
FROM memcached:latest
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
CMD ["memcached"]
|
CMD ["memcached"]
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
FROM minio/minio
|
FROM minio/minio
|
||||||
|
|
||||||
MAINTAINER Thor Erik Lie <thor@thorerik.com>
|
LABEL maintainer="Thor Erik Lie <thor@thorerik.com>"
|
||||||
|
|
||||||
ENTRYPOINT ["minio", "server", "/export"]
|
ENTRYPOINT ["minio", "server", "/export"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM mongo:latest
|
FROM mongo:latest
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
#COPY mongo.conf /usr/local/etc/mongo/mongo.conf
|
#COPY mongo.conf /usr/local/etc/mongo/mongo.conf
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
ARG MYSQL_VERSION=latest
|
ARG MYSQL_VERSION=latest
|
||||||
FROM mysql:${MYSQL_VERSION}
|
FROM mysql:${MYSQL_VERSION}
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
#####################################
|
#####################################
|
||||||
# Set Timezone
|
# Set Timezone
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM tpires/neo4j
|
FROM tpires/neo4j
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
VOLUME /var/lib/neo4j/data
|
VOLUME /var/lib/neo4j/data
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
ADD nginx.conf /etc/nginx/
|
ADD nginx.conf /etc/nginx/
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM percona:5.7
|
FROM percona:5.7
|
||||||
|
|
||||||
MAINTAINER DTUNES <diegotdai@gmai.com>
|
LABEL maintainer="DTUNES <diegotdai@gmai.com>"
|
||||||
|
|
||||||
RUN chown -R mysql:root /var/lib/mysql/
|
RUN chown -R mysql:root /var/lib/mysql/
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM fenglc/pgadmin4
|
FROM fenglc/pgadmin4
|
||||||
|
|
||||||
MAINTAINER Huadong Zuo <admin@zuohuadong.cn>
|
LABEL maintainer="Huadong Zuo <admin@zuohuadong.cn>"
|
||||||
|
|
||||||
# user: pgadmin4@pgadmin.org
|
# user: pgadmin4@pgadmin.org
|
||||||
# password: admin
|
# password: admin
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
FROM php:7.0-alpine
|
FROM php:7.0-alpine
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
RUN apk --update add wget \
|
RUN apk --update add wget \
|
||||||
curl \
|
curl \
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
FROM php:7.1-alpine
|
FROM php:7.1-alpine
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
RUN apk --update add wget \
|
RUN apk --update add wget \
|
||||||
curl \
|
curl \
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
FROM php:7.2-alpine
|
FROM php:7.2-alpine
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
RUN apk --update add wget \
|
RUN apk --update add wget \
|
||||||
curl \
|
curl \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM phpmyadmin/phpmyadmin
|
FROM phpmyadmin/phpmyadmin
|
||||||
|
|
||||||
MAINTAINER Bo-Yi Wu <appleboy.tw@gmail.com>
|
LABEL maintainer="Bo-Yi Wu <appleboy.tw@gmail.com>"
|
||||||
|
|
||||||
# Add volume for sessions to allow session persistence
|
# Add volume for sessions to allow session persistence
|
||||||
VOLUME /sessions
|
VOLUME /sessions
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM mdillon/postgis:latest
|
FROM mdillon/postgis:latest
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
CMD ["postgres"]
|
CMD ["postgres"]
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM postgres:alpine
|
FROM postgres:alpine
|
||||||
|
|
||||||
MAINTAINER Ben M <git@bmagg.com>
|
LABEL maintainer="Ben M <git@bmagg.com>"
|
||||||
|
|
||||||
CMD ["postgres"]
|
CMD ["postgres"]
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM rabbitmq
|
FROM rabbitmq
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
RUN rabbitmq-plugins enable --offline rabbitmq_management
|
RUN rabbitmq-plugins enable --offline rabbitmq_management
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM redis:latest
|
FROM redis:latest
|
||||||
|
|
||||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
||||||
|
|
||||||
## For security settings uncomment, make the dir, copy conf, and also start with the conf, to use it
|
## For security settings uncomment, make the dir, copy conf, and also start with the conf, to use it
|
||||||
#RUN mkdir -p /usr/local/etc/redis
|
#RUN mkdir -p /usr/local/etc/redis
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM rethinkdb:latest
|
FROM rethinkdb:latest
|
||||||
|
|
||||||
MAINTAINER Cristian Mello <cristianc.mello@gmail.com>
|
LABEL maintainer="Cristian Mello <cristianc.mello@gmail.com>"
|
||||||
|
|
||||||
VOLUME /data/rethinkdb_data
|
VOLUME /data/rethinkdb_data
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
FROM selenium/standalone-chrome
|
FROM selenium/standalone-chrome
|
||||||
|
|
||||||
MAINTAINER Edmund Luong <edmundvmluong@gmail.com>
|
LABEL maintainer="Edmund Luong <edmundvmluong@gmail.com>"
|
||||||
|
|
||||||
EXPOSE 4444
|
EXPOSE 4444
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM debian:latest
|
FROM debian:latest
|
||||||
|
|
||||||
MAINTAINER ZeroC0D3 Team<zeroc0d3.team@gmail.com>
|
LABEL maintainer="ZeroC0D3 Team<zeroc0d3.team@gmail.com>"
|
||||||
|
|
||||||
# Set Environment Variables
|
# Set Environment Variables
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
Loading…
Reference in New Issue