Database Connection Error

Author: 1988gadocanseyCreated Aug 19, 2023Updated Dec 2, 2023

I'm getting database access denied for root using password yes when running the make up. Below is my compose.yaml

version: "3.7" services: web: image: go-clean-arch container_name: article_management_api ports: - 9090:9090 depends_on: mysql: condition: service_healthy volumes: - ./config.json:/app/config.json

mysql: image: mysql:5.7 container_name: go_clean_arch_mysql command: mysqld --user=root volumes: - ./article.sql:/docker-entrypoint-initdb.d/init.sql ports: - 3305:3305 environment: - MYSQL_DATABASE=article - MYSQL_USER=root - MYSQL_PASSWORD= - MYSQL_ROOT_PASSWORD= healthcheck: test: ["CMD", "mysqladmin", "ping", "-h", "localhost"] timeout: 5s retries: 10