wordpress/mariadb/Dockerfile

11 lines
177 B
Docker
Raw Normal View History

2020-05-21 12:49:20 +02:00
FROM registry.sindominio.net/debian
RUN apt-get update && \
apt-get -qy install mariadb-server &&\
apt-get clean
VOLUME /var/lib/mysql
CMD ["/usr/bin/mysqld_safe"]]