mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-07-12 19:46:23 +00:00
11 lines
143 B
Docker
11 lines
143 B
Docker
![]() |
FROM mariadb:10.5.8
|
||
|
|
||
|
ENV MYSQL_DATABASE=openspg \
|
||
|
MYSQL_ROOT_PASSWORD=openspg
|
||
|
|
||
|
ADD ./initdb.sql /docker-entrypoint-initdb.d
|
||
|
|
||
|
EXPOSE 3306
|
||
|
|
||
|
|