cmc-sales/Dockerfile.prod.db

13 lines
361 B
Docker

# Use the same content as Dockerfile.stg.db, but for prod. If you want to customize, edit this file.
# For now, copy the staging DB Dockerfile and adjust as needed for production.
FROM mysql:5.7
ENV MYSQL_ROOT_PASSWORD=secureRootPassword
ENV MYSQL_DATABASE=cmc
ENV MYSQL_USER=cmc
ENV MYSQL_PASSWORD=xVRQI&cA?7AU=hqJ!%au
EXPOSE 3306
VOLUME ["/var/lib/mysql"]