13 lines
339 B
Docker
Raw Permalink Normal View History

2024-04-12 22:09:33 +02:00
# Use the official MySQL image from Docker Hub
FROM mysql:latest
# Set environment variables
ENV MYSQL_ROOT_PASSWORD=root_password
ENV MYSQL_DATABASE=employees
# Copy the SQL initialization script into the container
COPY init.sql /docker-entrypoint-initdb.d/
# Expose port 3306 to allow external connections to the database
EXPOSE 3306