changeweb / Unifiedtransform

A school management Software
https://changeweb.github.io/Unifiedtransform/
GNU General Public License v3.0
2.81k stars 1.23k forks source link

Updated MSSQL example docker config #311

Closed dinesh46 closed 3 years ago

dinesh46 commented 3 years ago

303

Currently, My sql thinks you are trying to add a user instead of setting the root user password. Addressing the docker file issue, to help people get started easily.

current docker-composer.yml file MYSQL_ROOT_PASSWORD: ${DB_PASSWORD} MYSQL_USER: ${DB_USERNAME} MYSQL_PASSWORD: ${DB_PASSWORD} you can fix this by changing the .env file

DB_CONNECTION=mysql DB_HOST=db DB_PORT=3306 DB_DATABASE=school DB_USERNAME=Something else than root DB_PASSWORD=schoolapp

Addressing the docker file issue, to help people get started easily.