config.yaml 846 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. listenAddressSingleHTTPFrontend: 0.0.0.0:11337
  3. logLevel: "WARN"
  4. checkForUpdates: false
  5. showFooter: false
  6. actions:
  7. - title: Start {{ container.Names }}
  8. icon: box
  9. shell: echo "start {{ container.Names }}"
  10. entity: container
  11. - title: Stop {{ container.Names }}
  12. icon: box
  13. shell: echo "stop {{ container.Names }}"
  14. entity: container
  15. entities:
  16. - file: containers.json
  17. name: container
  18. dashboards:
  19. - title: My Containers
  20. contents:
  21. - title: 'Container {{ container.Names }} ({{ container.Image }})'
  22. entity: container
  23. type: fieldset
  24. contents:
  25. - type: display
  26. title: |
  27. {{ container.RunningFor }} <br /><br /><strong>{{ container.State }}</strong>
  28. - title: 'Start {{ container.Names }}'
  29. - title: 'Stop {{ container.Names }}'