hi folks. im a cs student and still very new to flyte and technologies like docker, kubernetes and postgres. I had some questions about understanding how things come together.
When running
flytectl demo start
and running a workflow locally through the gui after doing
pyflyte register .
as far as i understand the workflow and tasks are running on a local docker container on my machine.
Now if i used a seperate
docker-compose.yml
to start up a postgres database image, exposing port localhost:5432, how would i be able to access that database in my flyte tasks? As far as i understand they are currenty in 2 different docker containers and so cant access eachother?
Id appreciate any help and good links to resources to gain a better understanding.