Guest User

rockon buggy

a guest
Jun 17th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. {
  2. "Snipe-it":{
  3. "description":"Snipe-it, brought to you by linuxserver.",
  4. "version":"v1.0",
  5. "website":"https://snipeitapp.com",
  6. "icon":"https://snipeitapp.com/img/logos/snipe-it-logo-xs.png",
  7. "more_info":"Snipe-it makes asset management easy. It was built by people solving real-world IT and asset management problems, and a solid UX has always been a top priority. Straightforward design and bulk actions mean getting things done faster.",
  8. "volume_add_support":true,
  9. "containers":{
  10. "snipe_mysql":{
  11. "image":"mysql:5",
  12. "launch_order":"1",
  13. "volumes":{
  14. "/var/lib/mysql":{
  15. "description":"This is where the data is stored",
  16. "label":"Database Storage"
  17. }
  18. },
  19. "opts":[
  20. [
  21. "--e",
  22. "MYSQL_USER=snipe"
  23. ],
  24. [
  25. "--e",
  26. "MYSQL_DATABASE=snipe"
  27. ]
  28. ],
  29. "environment":{
  30. "MYSQL_PASSWORD":{
  31. "description":"Remember this",
  32. "label":"Secret User Password"
  33. },
  34. "MYSQL_ROOT_PASSWORD":{
  35. "description":"Remember this",
  36. "label":"Secret Root Password"
  37. }
  38. }
  39. },
  40. "snipeit":{
  41. "image":"linuxserver/snipe-it:latest",
  42. "launch_order":"2",
  43. "volumes":{
  44. "/config":{
  45. "description":"Snipe-it config",
  46. "label":"Location of Snipe-it config data"
  47. }
  48. },
  49. "opts":[
  50. [
  51. "--p",
  52. "80"
  53. ],
  54. [
  55. "--e",
  56. "MYSQL_USER=snipe"
  57. ],
  58. [
  59. "--e",
  60. "MYSQL_DATABASE=snipe"
  61. ],
  62. [
  63. "--e",
  64. "MYSQL_PORT_3306_TCP_ADDR=mysql"
  65. ],
  66. [
  67. "--e",
  68. "MYSQL_PORT_3306_TCP_PORT=3306"
  69. ]
  70. ],
  71. "ports":{
  72. "80":{
  73. "description":"Must match App URL",
  74. "label":"Web UI port",
  75. "host_default":9090,
  76. "ui":true
  77. }
  78. },
  79. "environment":{
  80. "APP_URL":{
  81. "description":"Hostname or IP and port if applicable IE ip or hostname:9090",
  82. "label":"App URL"
  83. },
  84. "MYSQL_PASSWORD":{
  85. "description":"Secret user password from earlier",
  86. "label":"User Password"
  87. },
  88. "PUID":{
  89. "description":"User ID for snipeit to be run with.",
  90. "label":"User ID"
  91. },
  92. "PGID":{
  93. "description":"Group ID for snipeit to be run with.",
  94. "label":"Group ID"
  95. }
  96. }
  97. }
  98. }
  99. }
  100. }
Add Comment
Please, Sign In to add comment