Key features:
- Ultra-simple installation.
- OpenAI-compatible model API — so that the DF Infra endpoint can be used with various 3rd-party tools.
- Ultra-simple scaling path.
- Handling multi-GPU box scenarios.
- Operation on cloud GPU nodes.
- Full management of any infra host via the deepfellow infra command.
You need python 3.13 with uv, to install dependencies:
uv syncYou need just. To start server type:
just devBuild
docker build -t infra .To run application in docker you need share docker.sock. For rootless it is /run/user/$UID/docker.sock for normal setup it is /var/run/docker.sock. To run docker image with rootless call:
docker run -it --rm \
-p 8086:8086 \
-v $PWD/storage:/app/storage \
-v /run/user/$UID/docker.sock:/var/run/docker.sock \
infra
MIT