Is there any documentation about how you would go ...
# prefect-community
p
Is there any documentation about how you would go about setting up prefect server to run in a containerized env? I saw Tyler Wanner's terraform setting up a GCP compute instance, but is there a way to set things up to get run out of a container?
n
Hi @Philip MacMenamin - Prefect Server is already run in a series of containers, it uses
docker-compose
to spin up and manage each of the services.
p
Right... I guess this is why I'm asking. If I wanted to run this on Fargate for example, I would just run your container? How is the config done?
c
Ultimately you would need to look at the docker compose file and see what services are necessary and what ports they need to talk to each other over, and then replicate that in whatever system you’re trying to deploy with.
upvote 2
p
Thanks Chris. This is what I needed.
👍 1