Cannot start Docker Compose application. Reason: compose [start] exit status 1. Container tasty-track-mysql Starting Error response from daemon: Ports are not available: exposing port TCP 0.0.0.0:3306 -> 0.0.0.0:0: listen tcp 0.0.0.0:3306: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.
PowerShell 관리자 모드로 실행
명령어 입력
1) netstat -ano | findstr :3306
2) taskkill /f /pid {사용중인 번호, 예시에서는 7560} (3306 포트번호 사용하고 있는 자원 종료)
Reference