ADD: docker-compose.yml file for database
FIX: Dockerfile for m1 mac (x86)
Showing
2 changed files
with
13 additions
and
2 deletions
1 | -FROM mysql:5.7 | 1 | +FROM --platform=linux/x86_64 mysql:5.7 |
2 | 2 | ||
3 | ADD ./mysql_init /docker-entrypoint-initdb.d | 3 | ADD ./mysql_init /docker-entrypoint-initdb.d |
4 | 4 | ||
5 | EXPOSE 3306 | 5 | EXPOSE 3306 |
6 | 6 | ||
7 | -CMD["mysqld"] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
7 | +CMD ["mysqld"] | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment