From 40899bc40fcb50fb457ccc3a329a1d6e351b527c Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 9 May 2016 15:53:16 +0300 Subject: [PATCH] remove the duplicated volumes from DBs dockerfiles --- mariadb/Dockerfile | 2 -- mysql/Dockerfile | 2 -- postgres/Dockerfile | 2 -- 3 files changed, 6 deletions(-) diff --git a/mariadb/Dockerfile b/mariadb/Dockerfile index d798d26c..f8724f59 100644 --- a/mariadb/Dockerfile +++ b/mariadb/Dockerfile @@ -2,8 +2,6 @@ FROM mariadb:latest MAINTAINER Mahmoud Zalt -VOLUME /var/lib/mariadb - CMD ["mysqld"] EXPOSE 3306 diff --git a/mysql/Dockerfile b/mysql/Dockerfile index b7206cc7..ae60244f 100644 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -2,8 +2,6 @@ FROM mysql:latest MAINTAINER Mahmoud Zalt -VOLUME /var/lib/mysql - CMD ["mysqld"] EXPOSE 3306 diff --git a/postgres/Dockerfile b/postgres/Dockerfile index 87d80cc9..56a4ddb8 100644 --- a/postgres/Dockerfile +++ b/postgres/Dockerfile @@ -2,8 +2,6 @@ FROM postgres:latest MAINTAINER Ben M -VOLUME /var/lib/postgres - CMD ["postgres"] EXPOSE 5432 \ No newline at end of file