Adds support in for missing capabilities
definition so that after making docker v27 the default on nix it will let me actually run gpu pps again. Example YAML block for Ansible:
### AI and Machine Learning
- service_name: ollama
active: true
image: ollama/ollama
ports:
- 11434:11434
volumes:
- "{{ appdata_path }}/apps/ollama:/root/.ollama"
deploy:
resources:
reservations:
devices:
- driver: cdi
capabilities:
- gpu
device_ids:
- nvidia.com/gpu=all
restart: unless-stopped
What's Changed
- Add entrypoint, stdin, and tty options by @FuzzyMistborn in #32
- fixes syntax for gpu caps by @ironicbadger in #34
Full Changelog: 1.0.11...1.0.12