I have mysql and apache superset setup on dockers and connected by a bridge network, what will theSQLAlchemy URI be?
问题 I pulled the official superset image: git clone https://github.com/apache/incubator-superset.git then added the MYSQL Client to requirements.txt cd incubator-superset touch ./docker/requirements-local.txt echo "mysqlclient==1.4.6" >> ./docker/requirements-local.txt docker-compose build --force-rm docker-compose up -d After which I made the MYSQL Container docker run --detach --network="incubator-superset_default" --name=vedasupersetmysql --env="MYSQL_ROOT_PASSWORD=vedashri" --publish 6603