has anyone had any experience with running a local...
# prefect-server
s
has anyone had any experience with running a local server and registering a flow to it from within a docker container?
a
Yes, I have run prefect server locally (using
prefect server start
) and ran a docker container with a shell script as the entryscript that creates the projects, registers the flows, then starts a local prefect agent. As it was on a Mac, I set the env var:
Copy code
PREFECT__SERVER__HOST=<http://host.docker.internal>
s
wow, that was so easy, thank you @Amanda Wee!!