Sign inSign up

mauroslucios/backoffice_db

By mauroslucios

•Updated about 5 years ago

Image
0

68

mauroslucios/backoffice_db repository overview

FROM mysql:5.7
ENV MYSQL_ROOT_PASSWORD 123456
ENV MYSQL_DATABASE backoffice
ENV MYSQL_USER mauroslucios
ENV MYSQL_PASSWORD 123456
COPY ./db/ /docker-entrypoint-initdb.d/
RUN /bin/bash -c "/usr/bin/mysqld_safe --skip-grant-tables &" && \
sleep 5 && \
mysql -u root -e "CREATE DATABASE backoffice" && \
mysql -u root backoffice < docker-entrypoint-initdb.d/CreateDatabase.sql

Tag summary

Content type

Image

Digest

Size

147.6 MB

Last updated

about 5 years ago

docker pull mauroslucios/backoffice_db:v1