mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-09-09 08:40:22 +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
|
||
|
|
||
|
|