Just noticed that the competitionkernel has a create compose file button in it to be used to spin up additional applications. This is an interesting feature.
When does this compose process run?
Are there an docs for it?
Is there an example?
Bug or Error
Feature Request
Documentation Issue
Other
This is an interesting comment from the docs. You can deploy containers inside a workbench project allocating GPUs.
# Specify GPU requests in this format.
# AI Workbench manages reservations and explicitly passes GPUs into each container,
# so you don't have to worry about collisions
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
command: ["-text=hellofromservice2", "-listen=:5679"]
``