The competition-kernal has a "create compose file" button - is there an example / blog using it?

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.

  1. When does this compose process run?
  2. Are there an docs for it?
  3. Is there an example?

Bug or Error
Feature Request
Documentation Issue
Other

This is a new feature that isn’t unique to this projects.

Here’s the user guide: Multiple Container Support With Docker Compose - NVIDIA Docs

We will be posting some example projects soon…

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"]
``