correct the group
[discourse_docker.git] / samples / standalone.yml
CommitLineData
b6f290a0
SS
1# this is the base templates used, you can cut it down to include less functionality per container
2templates:
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"
fbdbfba4
SS
8# which ports to expose?
9expose:
10 - "80:80"
11 - "2222:22"
12
13params:
d0cd2c4d 14 # ssh key so you can log in
fbdbfba4
SS
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:
d0cd2c4d
SS
24 # your domain name
25 - www.example.com
fbdbfba4
SS
26
27
d0cd2c4d 28# needed for bootstrapping, lowercase email
fbdbfba4 29env:
d0cd2c4d 30 DEVELOPER_EMAILS: 'my_email@email.com'
1fe0bcd3
SS
31
32volumes:
33 - volume:
34 host: /var/docker/data
35 guest: /shared