i am trying to connect to external aws mysql rds:
environment:
- DB=mysql
- DB_PORT=3327
- MYSQL_USER=temporal
- MYSQL_PWD=
- MYSQL_SEEDS=
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
- SKIP_DB_CREATE=false
Here , the db “temporal” is already created and user “temporal” has access on the db “temporal”
on docker-compose up, i get the error:
temporal | + temporal-sql-tool --ep -u temporal create --db temporal
temporal | 2022-06-24T05:25:30.400Z ERROR Unable to create SQL database. {“error”: “dial tcp 172.26.22.202:3306: connect: connection refused”, “logging-call-at”: “handler.go:98”}
How do i skip the db creation process?