LEFT | RIGHT |
1 ## this is the all-in-one, standalone Discourse Docker container template | 1 ## this is the all-in-one, standalone Discourse Docker container template |
2 ## | 2 ## |
3 ## After making changes to this file, you MUST rebuild | 3 ## After making changes to this file, you MUST rebuild |
4 ## /var/discourse/launcher rebuild app | 4 ## /var/discourse/launcher rebuild app |
5 ## | 5 ## |
6 ## BE *VERY* CAREFUL WHEN EDITING! | 6 ## BE *VERY* CAREFUL WHEN EDITING! |
7 ## YAML FILES ARE SUPER SUPER SENSITIVE TO MISTAKES IN WHITESPACE OR ALIGNMENT! | 7 ## YAML FILES ARE SUPER SUPER SENSITIVE TO MISTAKES IN WHITESPACE OR ALIGNMENT! |
8 ## visit http://www.yamllint.com/ to validate this file as needed | 8 ## visit http://www.yamllint.com/ to validate this file as needed |
9 | 9 |
10 templates: | 10 templates: |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 volumes: | 67 volumes: |
68 - volume: | 68 - volume: |
69 host: /var/discourse/shared/standalone | 69 host: /var/discourse/shared/standalone |
70 guest: /shared | 70 guest: /shared |
71 - volume: | 71 - volume: |
72 host: /var/discourse/shared/standalone/log/var-log | 72 host: /var/discourse/shared/standalone/log/var-log |
73 guest: /var/log | 73 guest: /var/log |
74 | 74 |
75 ## Plugins go here | 75 ## Plugins go here |
76 ## see https://meta.discourse.org/t/19157 for details | 76 ## see https://meta.discourse.org/t/19157 for details |
77 hooks: | 77 #hooks: |
78 after_code: | 78 # after_code: |
79 - exec: | 79 # - exec: |
80 cd: $home/plugins | 80 # cd: $home/plugins |
81 cmd: | 81 # cmd: |
82 #- git clone https://github.com/discourse/docker_manager.git | 82 # #- git clone https://github.com/discourse/docker_manager.git |
83 | 83 |
84 ## Any custom commands to run after building | 84 ## Any custom commands to run after building |
85 run: | 85 run: |
86 - exec: echo "Beginning of custom commands" | 86 - exec: echo "Beginning of custom commands" |
87 - exec: rails r "<% @site_settings.sort_by { |k,v| k }.each do |name, value| %
>SiteSetting.<%=name%>='<%=value%>';<% end %>" | 87 - exec: rails r "<% @site_settings.sort_by { |k,v| k }.each do |name, value| %
>SiteSetting.<%=name%>='<%=value%>';<% end %>" |
88 - exec: echo "End of custom commands" | 88 - exec: echo "End of custom commands" |
89 | 89 |
LEFT | RIGHT |