Hi, Can I run two Local Agents using the same mach...
# ask-community
t
Hi, Can I run two Local Agents using the same machine. I am trying to test my code and I want to assign my flows to different agents. So I am trying to run two agents on my machine
f
Hi Talha, maybe you want to use Docker (and docker-compose's `scale` feature) to do that. Are you using Docker already or prefect command lines ?
k
Yes you can if you just do
prefect agent local start -l dev
and
prefect agent local start -l prod
👍 2