Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # Overrideable configuration variables
  4. #
  5.  
  6. ##
  7. # Load the wwwserver library
  8. #
  9. library_load "wwwservercnpm"
  10.  
  11. ##
  12. # Include some other local libraries
  13. #
  14. library_load "feature"
  15.  
  16. ###
  17. # Project settings
  18. #
  19. project_name="growwild"
  20.  
  21. ###
  22. # Docker image configurations
  23. #
  24. project_build="growwild"
  25. project_image="growwild"
  26. project_imageversion="new"
  27.  
  28. ###
  29. # Docker build configurations
  30. #
  31. project_buildtemplate="template"
  32.  
  33. ###
  34. # Docker Container configurations
  35. #
  36. machine_username="developer"
  37. machine_hostname="${project_name}"
  38.  
  39. machine_runargs="--tty" # --tty is needed for supervisord to run.
  40. machine_shell="/bin/zsh"
  41. machine_shellrunargs="--publish-all=true --env HOME=/home/${machine_username} --user=${machine_username}"
  42.  
  43. ###
  44. # Mount list:
  45. #
  46. settings_mount_addmount "${path_project}/source:/app/source"
  47. settings_mount_addmount "${path_project}/backup:/app/backup"
  48.  
  49. settings_mount_addmount "${path_userhome}/.ssh:/home/${machine_username}/.ssh-host"
  50.  
  51.  
  52. ###
  53. # Settings were added from these hooks
  54. #
  55. ## SETTINGS FROM HOOK : hook_settings_default_010
  56. ## SETTINGS FROM HOOK : hook_settings_default_015
  57. ## SETTINGS FROM HOOK : wwwserver_settings_defaults_030
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement