How to tell prefect docker server where prefect.toml is #22159
Replies: 2 comments
|
You'll want to mount your |
|
Quick heads up:
WORKDIR /appdocker run -v $(pwd)/prefect.toml:/app/prefect.toml ... prefect server startTo confirm what's actually being applied, Honestly though, if it's just a handful of settings, the easiest thing in a container is to skip the file and set them as |
Uh oh!
There was an error while loading. Please reload this page.
I am trying to run a prefect server in docker but I am unsure how to verify what prefect.toml is being used. I have make a customized toml on my host machine but I am unsure if I can feed it into my docker container or if I need to provide information to it some other way.
All reactions