-
Notifications
You must be signed in to change notification settings - Fork 488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Typo in phpMyAdmin example #1895
base: 8.x
Are you sure you want to change the base?
Conversation
the service is mysql not some-mysql
…the mysql service The network should be defined or the container wont be able to reach the mysql service unless you expose the ports. This is likely the best example.
with the PMA_HOST and PMA_PORT and PMA_ARGITRARY defined it seems that the intent is to have the system leverage this connection information, however with out the PMA_USER and the PMA_PASSWORD configuration set this information is not used, to better serve the example the db user and pass from lines 25 and 26 could be set here and then the container would auto login for phpMyAdmin for the example
environment: | ||
PMA_HOST: some-mysql | ||
PMA_PORT: 3306 | ||
PMA_ARBITRARY: 1 | ||
PMA_USER: root | ||
PMA_PASSWORD: admin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SharakPL is this the intent of having the host name and port set here? see comment on the commit, at current it isnt used unless the the PMA_HOST and PMA_PASSWORD is set, I think this might have been the intent and if not could be a great add to the example to assist new users.
the service is mysql not some-mysql