Skip to content

Commit

Permalink
docs: fix mysql docker instructions
Browse files Browse the repository at this point in the history
This commit fixes the docker installation instructions to ensure
that the commands are ordered properly.
  • Loading branch information
jniles committed Aug 26, 2022
1 parent 6ac5878 commit 8bf0fc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/en/for-developers/installing-bhima.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ To start a MySQL server using docker you can use:
# in this example, we use "mysql" as the tag name

docker run --name mysql -p 3306:3306 \
-d mysql/mysql-server:8.0 \
-e MYSQL_ROOT_PASSWORD=MyPassword \
-e MYSQL_ROOT_HOST=% \
-d mysql/mysql-server:8.0 \
--sql-mode='STRICT_ALL_TABLES,NO_UNSIGNED_SUBTRACTION' \
--default-authentication-plugin=mysql_native_password

Expand Down
5 changes: 3 additions & 2 deletions docs/fr/for-developers/installing-bhima.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,10 @@ Tu peux aussi utiliser docker avec mysql. Le command pour le lancer est:

#demarrer docker sur port 3306

docker run --name mysql8 -p 3306:3306 \
docker run --name mysql -p 3306:3306 \
-e MYSQL_ROOT_PASSWORD=MyPassword \
-d mysql:8 \
-e MYSQL_ROOT_HOST=% \
-d mysql/mysql-server:8.0 \
--sql-mode='STRICT_ALL_TABLES,NO_UNSIGNED_SUBTRACTION' \
--default-authentication-plugin=mysql_native_password

Expand Down

0 comments on commit 8bf0fc7

Please sign in to comment.