Hi, I'm setting up orchestration on top of leash for running containerized coding agents. (https://github.com/JuroOravec/safe-ai-factory)
In my setup, I allow other people to define docker-compose.yml to define additional servics (db, redis, etc) to be run together with the coding agent.
When I was setting it up I noticed that Leash CLI doesn't allow to configure Docker network for the agent container.
I can work around it in 2 ways:
- Tell people to ALWAYS use default network.
- Poll for the created Leash agent container, and add it to the target network once the container is up.
Ideal solution would be to allow to pass --network CLI option to Leash, so the agent container can be added to any network easily.
Hi, I'm setting up orchestration on top of leash for running containerized coding agents. (https://github.com/JuroOravec/safe-ai-factory)
In my setup, I allow other people to define
docker-compose.ymlto define additional servics (db, redis, etc) to be run together with the coding agent.When I was setting it up I noticed that Leash CLI doesn't allow to configure Docker network for the agent container.
I can work around it in 2 ways:
Ideal solution would be to allow to pass
--networkCLI option to Leash, so the agent container can be added to any network easily.