Merge pull request #6 from Supermathie/master
[discourse_docker.git] / README.md
CommitLineData
408a9c19
SS
1### About
2
8200fe05
JA
3- [Docker](https://www.docker.io/) is an open source project to pack, ship and run any Linux application in a lighter weight, faster container than a traditional virtual machine.
4
5- Docker makes it much easier to deploy [a Discourse forum](https://github.com/discourse/discourse) on your servers and keep it updated. For background, see [Sam's blog post](http://samsaffron.com/archive/2013/11/07/discourse-in-a-docker-container).
2619d8e3 6
faa6f226 7- The templates and base image configure Discourse with the Discourse team's recommended optimal defaults.
408a9c19 8
2a438fb6 9
4792b7d0 10### IMPORTANT: Before You Start
2a438fb6 11
259189ae 121. Make sure you're running a **64 bit** version of either [Ubuntu 12.04 LTS](http://releases.ubuntu.com/precise/), [Ubuntu 13.04](http://releases.ubuntu.com/13.04/) or [Ubuntu 13.10](http://releases.ubuntu.com/13.10/).
596faf7a
MB
131. Upgrade to the [latest version of Docker](http://docs.docker.io/en/latest/installation/ubuntulinux/).
141. Create a directory for Discourse Docker (the expected path is `/var/docker`): `install -g docker -m 2775 -d /var/docker`
151. Run the docker installation and launcher as **root** or a member of the **docker** group.
161. Add your user account to the docker group: `usermod -a -G docker yourusername` and re-login.
837466ae 17
596faf7a 18If you do not do any of the above, as RoboCop once said, ["there will be… trouble."](http://www.youtube.com/watch?v=XxarhampSNI) *Please double check the above list before proceeding!*
2a438fb6 19
4792b7d0 20### Getting Started
cd0f828e 21
8200fe05 22The simplest way to get started is the **standalone** template:
cd0f828e 23
2a438fb6 241. **Clone** this project from github: `git clone https://github.com/SamSaffron/discourse_docker.git /var/docker`
18d0278e
RH
252. **Copy** the standalone sample into the containers directory: `cp samples/standalone.yml containers/app.yml`
263. **Edit** `containers/app.yml` with your environment specific information
58584176 27 - [bindings](#expose)
851af3a4 28 - [volumes](#volumes) (make sure you create the appropriate directories on the host)
18d0278e
RH
294. **Bootstrap** the image: `sudo ./launcher bootstrap app`
305. **Start** the image: `sudo ./launcher start app`
cd0f828e 31
4792b7d0 32Note: you can add yourself to the Docker group if you wish to avoid `sudo` with `usermod -aG docker <your-user-name>`.
cd0f828e 33
408a9c19
SS
34### Directory Structure
35
8200fe05 36#### `/cids`
408a9c19
SS
37
38Contains container ids for currently running Docker containers. cids are Docker's "equivalent" of pids. Each container will have a unique git like hash.
39
8200fe05 40#### `/containers`
408a9c19 41
4792b7d0 42This directory is for container definitions for your various Discourse containers. You are in charge of this directory, it ships empty.
408a9c19 43
8200fe05 44#### `/samples`
408a9c19
SS
45
46Sample container definitions you may use to bootstrap your environment. You can copy and amend templates here into the containers directory.
47
8200fe05 48#### `/shared`
408a9c19
SS
49
50Placeholder 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.
51
8200fe05 52#### `/templates`
408a9c19
SS
53
54[pups](https://github.com/samsaffron/pups) managed pups templates you may use to bootstrap your environment.
55
8200fe05 56#### `/image`
408a9c19
SS
57
58Dockerfile for both the base image `samsaffron/discoruse_base` and discourse image `samsaffron/discourse`.
59
faa6f226 60- `samsaffron/discourse_base` contains all the OS dependencies including sshd, runit, postgres, nginx, ruby.
408a9c19 61
faa6f226 62- `samsaffron/discourse` builds on the base image and configures a discourse user and `/var/www/discourse` directory for the Discourse source.
408a9c19
SS
63
64The 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.
65
58584176 66### Launcher
408a9c19
SS
67
68The 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.
69
70```
71Usage: launcher COMMAND CONFIG
72Commands:
73 start: Start/initialize a container
74 stop: Stop a running container
75 restart: Restart a container
76 destroy: Stop and remove a container
77 ssh: Start a bash shell in a running container
78 logs: Docker logs for container
79 bootstrap: Bootstrap a container for the config based on a template
80```
81
408a9c19 82
4792b7d0 83### Container Configuration
408a9c19 84
faa6f226 85The beginning of the container definition will contain 3 "special" sections:
408a9c19 86
58584176 87#### templates:
408a9c19
SS
88
89```
90templates:
91 - "templates/cron.template.yml"
92 - "templates/postgres.template.yml"
93```
94
faa6f226 95This template is "composed" out of all these child templates, this allows for a very flexible configuration struture. Furthermore you may add specific hooks that extend the templates you reference.
408a9c19 96
58584176 97#### expose:
408a9c19
SS
98
99```
100expose:
101 - "2222:22"
102```
103
104Expose port 22 inside the container on port 2222 on ALL local host interfaces.
105
106
58584176 107#### volumes:
408a9c19
SS
108
109```
110volumes:
111 - volume:
112 host: /var/docker/data
113 guest: /shared
114
115```
116
117Expose a directory inside the host inside the container.
118
4792b7d0 119### Upgrading Discourse
c57d9880 120
4792b7d0 121The Docker setup gives you multiple upgrade options:
c57d9880 122
4792b7d0 1231. Use the front end at http://yoursite.com/admin/docker to upgrade an already running image.
c57d9880 124
4792b7d0 1252. Create a new base image by running:
c57d9880
SS
126 - `./launcher bootstrap my_image`
127 - `./launcher destroy my_image`
128 - `./launcher start my_image`
129
4792b7d0 130### Single Container vs. Multiple Container
c57d9880 131
4792b7d0 132The samples directory contains a standalone template. This template bundles all of the software required to run Discourse into a single container. The advantage is that it is easy.
c57d9880 133
4792b7d0 134The multiple container configuration setup is far more flexible and robust, however it is also more complicated to set up. A multiple container setup allows you to:
c57d9880 135
6776444f 136- Minimize downtime when upgrading to new versions of Discourse. You can bootstrap new web processes while your site is running and only after it is built, switch the new image in.
4792b7d0
JA
137- Scale your forum to multiple servers.
138- Add servers for redundancy.
139- Have some required services (e.g. the database) run on beefier hardware.
6776444f
JA
140
141If you want a multiple container 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 142
4792b7d0 143WARNING: In a multiple container configuration, *make sure* you setup iptables or some other firewall to protect various ports (for postgres/redis).
596faf7a 144On Ubuntu, install the `ufw` or `iptables-persistent` package to manage firewall rules.
58584176 145
4792b7d0 146### Email
2e2e7049 147
4792b7d0 148For a Discourse instance to function properly Email must be set up. Use the `SMTP_URL` env var to set your SMTP address, see sample templates for an example. The Docker image does not contain postfix, exim or another MTA, it was omitted because it is very tricky to set up correctly.
2e2e7049 149
58584176 150### Troubleshooting
c57d9880 151
4792b7d0 152We strongly recommend you have ssh access to your running containers, this allows you very easily take a sneak peek at internals. The simplest way to gain access is:
c57d9880
SS
153
1541. Run a terminal as root
596faf7a
MB
1551. `ssh-keygen -b 2048 -t rsa -N "" -C "root's unprotected key" -f ~root/.ssh/id_rsa`
1561. Paste the contents of `~root/.ssh/id_rsa.pub` into your templates (see placeholder `YOUR_SSH_KEY` in samples)
1571. Bootstrap and run your container
1581. `./launcher ssh my_container`
c57d9880 159
df9a9431
MB
160Or, if you're running as a regular user:
161
1621. Run a terminal
1631. `ssh-keygen -b 2048 -t rsa -N "" -C "my unprotected key" -f ~/.ssh/id_rsa`
1641. Paste the contents of `~/.ssh/id_rsa.pub` into your templates (see placeholder `YOUR_SSH_KEY` in samples)
1651. Bootstrap and run your container
1661. `./launcher ssh my_container`
167
58584176 168### Security
c57d9880 169
596faf7a
MB
170Directory permissions in Linux are UID/GID based, if your numeric IDs on the
171host do not match the IDs in the guest, permissions will mismatch. On clean
172installs you can ensure they are in sync by looking at `/etc/passwd` and
173`/etc/group`, the Discourse account will have UID 1000.