Skip to content

Commit 2650072

Browse files
authored
Merge pull request #135 from UnityHPC/fix-docker-compose
fix docker compose
2 parents 8733bea + 7a92c77 commit 2650072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/docker-dev/sql/Dockerfile

+1-1
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)