mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
8 lines
No EOL
174 B
Text
8 lines
No EOL
174 B
Text
# 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 |