Use array to pass in env, preserving spaces
[discourse_docker.git] / README.md
CommitLineData
58584176 1## Discourse Docker
408a9c19
SS
2
3A toolkit for building and managing Docker images for Discourse.
4
5### About
6
7The Discourse docker templates were designed by Sam Saffron. See the following introduction: http://samsaffron.com/archive/2013/11/07/discourse-in-a-docker-container
8
9These templates are agnostic, you may run Discourse in multiple containers or a single container.
10
11The templates and base image take care of configuring Discourse with best practices in mind. The latest version of Ruby 2.0 is included as is fairly extensive memory and GC tuning. The web template uses unicorn which helps cut down on overall memory usage making this very suitable for VPS type installs.
12
2a438fb6
S
13
14### Before you start
15
f56c5f9a 161. Be sure to run docker and launcher as root, its the simplest way to get going.
2a438fb6
S
172. Be sure to have Ubuntu 12.04 LTS or Ubuntu 13.04 or Ubuntu 13.10. Device mapper support in docker is still rough.
183. Be sure to upgrade to the latest version of Docker.
194. Install discourse docker into /var/docker it helps keep everything in a consistent spot and sample files expect this.
20
58584176 21### Getting started
cd0f828e 22
58584176 23The simplest (though slightly more fragile) way of getting started is using the **standalone** template.
cd0f828e 24
2a438fb6 251. **Clone** this project from github: `git clone https://github.com/SamSaffron/discourse_docker.git /var/docker`
18d0278e
RH
262. **Copy** the standalone sample into the containers directory: `cp samples/standalone.yml containers/app.yml`
273. **Edit** `containers/app.yml` with your environment specific information
58584176 28 - [bindings](#expose)
851af3a4 29 - [volumes](#volumes) (make sure you create the appropriate directories on the host)
18d0278e
RH
304. **Bootstrap** the image: `sudo ./launcher bootstrap app`
315. **Start** the image: `sudo ./launcher start app`
cd0f828e 32
58584176 33Note: you can add yourself to the docker group if you wish to avoid `sudo` with `usermod -aG docker <your-user-name>`.
cd0f828e 34
408a9c19
SS
35### Directory Structure
36
58584176 37#### cids
408a9c19
SS
38
39Contains container ids for currently running Docker containers. cids are Docker's "equivalent" of pids. Each container will have a unique git like hash.
40
58584176 41#### containers
408a9c19
SS
42
43This directory is to contain container definitions for your various Discourse containers. You are in charge of this directory, it ships empty.
44
58584176 45#### samples
408a9c19
SS
46
47Sample container definitions you may use to bootstrap your environment. You can copy and amend templates here into the containers directory.
48
58584176 49#### shared
408a9c19
SS
50
51Placeholder spot for shared volumes with various Discourse containers. You may elect to store certain persistent information outside of a container, in our case we keep various logfiles and upload directory outside. This allows you to rebuild containers easily without losing important information. Keeping uploads outside of the container allows you to share them between multiple web instances.
52
58584176 53#### templates
408a9c19
SS
54
55[pups](https://github.com/samsaffron/pups) managed pups templates you may use to bootstrap your environment.
56
58584176 57#### image
408a9c19
SS
58
59Dockerfile for both the base image `samsaffron/discoruse_base` and discourse image `samsaffron/discourse`.
60
61`samsaffron/discourse_base` contains all the OS dependencies including sshd, runit, postgres, nginx, ruby.
62
63`samsaffron/discourse` builds on the base image and configures a discourse user and `/var/www/discourse` directory for the Discourse source.
64
65The Docker repository will always contain the latest built version at: https://index.docker.io/u/samsaffron/discourse/ , you should not need to build the base image.
66
58584176 67### Launcher
408a9c19
SS
68
69The base directory contains a single bash script which is used to manage containers. You can use it to "bootstrap" a new container, ssh in, start, stop and destroy a container.
70
71```
72Usage: launcher COMMAND CONFIG
73Commands:
74 start: Start/initialize a container
75 stop: Stop a running container
76 restart: Restart a container
77 destroy: Stop and remove a container
78 ssh: Start a bash shell in a running container
79 logs: Docker logs for container
80 bootstrap: Bootstrap a container for the config based on a template
81```
82
408a9c19 83
58584176 84### About the container configuration
408a9c19
SS
85
86The beggining of the container definition will contain 3 "special" sections:
87
58584176 88#### templates:
408a9c19
SS
89
90```
91templates:
92 - "templates/cron.template.yml"
93 - "templates/postgres.template.yml"
94```
95
96This template is "composed" out of all these child templates, this allows for a very flexible configuration struture. Further more you may add specific hooks that extend the templates you reference.
97
58584176 98#### expose:
408a9c19
SS
99
100```
101expose:
102 - "2222:22"
103```
104
105Expose port 22 inside the container on port 2222 on ALL local host interfaces.
106
107
58584176 108#### volumes:
408a9c19
SS
109
110```
111volumes:
112 - volume:
113 host: /var/docker/data
114 guest: /shared
115
116```
117
118Expose a directory inside the host inside the container.
119
58584176 120### Upgrading discourse
c57d9880
SS
121
122The docker setup gives you multiple upgrade options:
123
1241. You can use the front end at http://yoursite.com/admin/docker to upgrade an already running image.
125
1262. You can create a new base image by running:
127 - `./launcher bootstrap my_image`
128 - `./launcher destroy my_image`
129 - `./launcher start my_image`
130
58584176 131### Multi image vs Single image setups
c57d9880 132
58584176 133The samples directory contains a standalone template. This template will bundle all of the programs required to run discourse into a single image. The advantage is that it is very easy to get started as you do not need to wire up communications between containers.
c57d9880
SS
134
135However, the disadvantage is that the bootstrapping process will launch a new postgres instance, having 2 postgres instances running against a single directory can lead to unexpected results. Due to that, if you are ever to bootstrap the `standalone` template again you should first stop the existing container.
136
58584176 137A multi images setup allows you to bootstrap new web processes while your site is running and only after it is built, switch the new image in. The setup is far more flexible and robust, however is a bit more complicated to setup. See the `data.yml` and `web_only.yml` templates in the samples directory. To ease this process, `launcher` will inject an env var called `DISCOURSE_HOST_IP` which will be available inside the image.
c57d9880 138
58584176
RH
139WARNING: If you launch multiple images, **make sure** you setup iptables or some other firewall to protect various ports (for postgres/redis).
140
141### Email setup
2e2e7049 142
4374ef76
SS
143For a Discourse instance to function properly Email must be setup. Use the SMTP_URL env var to set your SMTP address, see sample templates for an example.
144The docker image does not contain postfix, exim or another MTA, it was omitted cause it is very tricky to setup perfectly.
2e2e7049 145
58584176 146### Troubleshooting
c57d9880
SS
147
148It is strongly recommended you have ssh access to your running containers, this allows you very easily take sneak peak of the internals. Simplest way to gain access is:
149
1501. Run a terminal as root
1512. cd `~/.ssh`
1523. `ssh-key-gen`
1534. paste the contents of `id_rsa.pub` into your templates (see placeholder in samples)
1545. bootstrap and run your container
1556. `./launcher ssh my_container`
156
58584176 157### Security
c57d9880
SS
158
159Directory permissions in Linux are sid based, if your sids on the host do not match the sids in the guest, permissions will mismatch. On clean installs you can ensure they are in sync by looking at `/etc/passwd` and `/etc/group`, the discourse account will have the sid 1000.