mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-21 07:46:27 +00:00
8 lines
174 B
Plaintext
8 lines
174 B
Plaintext
# Dockerfile-db
|
|
FROM mariadb:latest
|
|
|
|
# Add the install.sql file to the docker image
|
|
ADD install/assets/install.sql /docker-entrypoint-initdb.d
|
|
|
|
# Expose port 3306
|
|
EXPOSE 3306 |