Skip to content

Commit 7a92c77

Browse files
committed
fix docker compose
1 parent 8733bea commit 7a92c77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/docker-dev/sql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
RUN sed -i '/bind-address/c\bind-address = 0.0.0.0' /etc/mysql/mariadb.conf.d/50-server.cnf
1010
COPY bootstrap.sql /tmp/bootstrap.sql
1111

12-
RUN service mysql start; \
12+
RUN service mariadb start; \
1313
mariadb -e "CREATE DATABASE unity"; \
1414
mariadb -e "CREATE USER 'unity'@'%' IDENTIFIED BY 'password'"; \
1515
mariadb -e "GRANT ALL PRIVILEGES ON unity.* TO 'unity'@'%'"; \

0 commit comments

Comments
 (0)