remove uneeded stuff from sample
[discourse_docker.git] / standalone.yml.sample
1 # this is the base templates used, you can cut it down to include less functionality per container
2 templates:
3 - "templates/cron.template.yml"
4 - "templates/postgres.template.yml"
5 - "templates/redis.template.yml"
6 - "templates/sshd.template.yml"
7 - "templates/web.template.yml"
8 # which ports to expose?
9 expose:
10 - "80:80"
11 - "2222:22"
12
13 params:
14 # ssh key so you can log in
15 ssh_key: YOUR_SSH_KEY
16 # git revision to run
17 version: HEAD
18
19
20 # host name, required by Discourse
21 database_yml:
22 production:
23 host_names:
24 # your domain name
25 - www.example.com
26
27
28 # needed for bootstrapping, lowercase email
29 env:
30 DEVELOPER_EMAILS: 'my_email@email.com'
31
32 volumes:
33 - volume:
34 host: /var/docker/data
35 guest: /shared