remove the duplicated volumes from DBs dockerfiles

This commit is contained in:
Mahmoud Zalt 2016-05-09 15:53:16 +03:00
parent 64bf3222af
commit 40899bc40f
3 changed files with 0 additions and 6 deletions

View File

@ -2,8 +2,6 @@ FROM mariadb:latest
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
VOLUME /var/lib/mariadb
CMD ["mysqld"]
EXPOSE 3306

View File

@ -2,8 +2,6 @@ FROM mysql:latest
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
VOLUME /var/lib/mysql
CMD ["mysqld"]
EXPOSE 3306

View File

@ -2,8 +2,6 @@ FROM postgres:latest
MAINTAINER Ben M <git@bmagg.com>
VOLUME /var/lib/postgres
CMD ["postgres"]
EXPOSE 5432