I have a docker-compose file that I am using for creating a WordPress environment and it works as expected. I did the docker-compose up and here are my containers: my containers
and more info about my MySQL container: MySQL container more info
and my docker-compose content:
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db
image: wordpress:latest
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
volumes:
db_data: {}
My question is, how can I possibly see the database in the MySQL workbench application? More precisely which port and hostname and connection type should I use here? I tried everything and couldn't see my db: MySQL workbench config