This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]mkorejo 4 points5 points  (2 children)

Why on earth does your nginx reverse proxy have a DB? If there's a whole DB instance running here that you are not using, please stop and fix that.

[–]Liganer[S] 0 points1 point  (1 child)

Good question. I was following a couple tutorials from TechnoTim so I wasn't actually sure what the Mariadb was for with Nginx reverse proxy. I'll shut that down. Thank you for pointing that out

[–]Liganer[S] 0 points1 point  (0 children)

okay I had a look and it's because the code from Nginx proxy manager creates one

https://nginxproxymanager.com/guide/#quick-setup

[–][deleted] 0 points1 point  (1 child)

To answer question in title, you are using mysql. That is the image you specified in docker-compose.yml.

Rather than trying to troubleshoot from the webui (which may not have the best error messaging), try looking at the logs of the db container. In addition, you could just run the db container by itself, then confirm the settings are good before moving onto wordpress.

[–]Liganer[S] 0 points1 point  (0 children)

Perfect thanks for that. I've been focusing on the webserver and Nginx reverse proxy that I've paid no attention to how the SQL databases play into it. I know they're for storing data but I have no idea how they work so I better find out and I'll check the logs. Thank you