Is it a good approach to use Dagger to run services in local development mode? I have tried using the code below to set up some simple services for use during development. The problem here is that I don't know how to connect to these services on my local machine. Could someone help me with that?
Attached is what I tried at the moment.
thank you in advance!
Note: I tried the below command to starting up the services and accessing the service.
dagger call services
mysql -h 127.0.0.1 -P 3306 -u root -prootpassword -A
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 2003 (HY000): Can't connect to MySQL server on '127.0.0.1:3306' (61)