Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. {
  2. "containerDefinitions": [
  3. {
  4. "memory": 2048,
  5. "essential": true,
  6. "mountPoints": [
  7. {
  8. "containerPath": "/hostlib",
  9. "sourceVolume": "hostlib",
  10. "readOnly": true
  11. },
  12. {
  13. "containerPath": "/hostusr",
  14. "sourceVolume": "hostusr",
  15. "readOnly": true
  16. }
  17. ],
  18. "privileged": true,
  19. "name": "gputask",
  20. "image": "your.docker.io/someimage:latest",
  21. "cpu": 8192
  22. }
  23. ],
  24. "volumes": [
  25. {
  26. "host": {
  27. "sourcePath": "/usr"
  28. },
  29. "name": "hostusr"
  30. },
  31. {
  32. "host": {
  33. "sourcePath": "/lib"
  34. },
  35. "name": "hostlib"
  36. }
  37. ],
  38. "family": "gputask"
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement