| 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 10 matching lines...) Expand all Loading... |
| 21 db_default_text_search_config: "pg_catalog.english" | 21 db_default_text_search_config: "pg_catalog.english" |
| 22 | 22 |
| 23 ## Set db_shared_buffers to a max of 25% of the total memory. | 23 ## Set db_shared_buffers to a max of 25% of the total memory. |
| 24 ## will be set automatically by bootstrap based on detected RAM, or you can ov
erride | 24 ## will be set automatically by bootstrap based on detected RAM, or you can ov
erride |
| 25 db_shared_buffers: "256MB" | 25 db_shared_buffers: "256MB" |
| 26 | 26 |
| 27 ## can improve sorting performance, but adds memory usage per-connection | 27 ## can improve sorting performance, but adds memory usage per-connection |
| 28 #db_work_mem: "40MB" | 28 #db_work_mem: "40MB" |
| 29 | 29 |
| 30 ## Which Git revision should this container use? (default: tests-passed) | 30 ## Which Git revision should this container use? (default: tests-passed) |
| 31 version: v1.6.0.beta11 | 31 version: v1.6.4 |
| 32 | 32 |
| 33 env: | 33 env: |
| 34 LANG: en_US.UTF-8 | 34 LANG: en_US.UTF-8 |
| 35 RUBY_GC_MALLOC_LIMIT: 90000000 | 35 RUBY_GC_MALLOC_LIMIT: 90000000 |
| 36 | 36 |
| 37 ## How many concurrent web requests are supported? Depends on memory and CPU c
ores. | 37 ## How many concurrent web requests are supported? Depends on memory and CPU c
ores. |
| 38 ## will be set automatically by bootstrap based on detected CPUs, or you can o
verride | 38 ## will be set automatically by bootstrap based on detected CPUs, or you can o
verride |
| 39 UNICORN_WORKERS: 2 | 39 UNICORN_WORKERS: 2 |
| 40 | 40 |
| 41 ## The domain name this Discourse instance will respond to | 41 ## The domain name this Discourse instance will respond to |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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" |
| LEFT | RIGHT |