--- /dev/null
+# a basic data only container
+
+templates:
+ - "templates/cron.template.yml"
+ - "templates/postgres.template.yml"
+ - "templates/redis.template.yml"
+ - "templates/sshd.template.yml"
+
+expose:
+ - "5432:5432"
+ - "6379:6379"
+ - "2221:22"
+
+params:
+ ssh_key: YOUR_KEY
+
+volumes:
+ - volume:
+ host: /home/sam/discourse_docker/shared
+ guest: /shared
--- /dev/null
+templates:
+ - "templates/cron.template.yml"
+ - "templates/postgres.template.yml"
+ - "templates/redis.template.yml"
+ - "templates/sshd.template.yml"
+ - "templates/web.template.yml"
+
+expose:
+ - "80:80"
+ - "2222:22"
+
+params:
+ ssh_key: YOUR_KEY
+
+ version: HEAD
+
+
+ database_yml:
+ production:
+ host_names:
+ - example.com
+env:
+ DEVELOPER_EMAILS: 'dev@example.com'
+
+volumes:
+ - volume:
+ host: /home/sam/discourse_docker/shared
+ guest: /shared
+
+hooks:
+ after_code:
+ - exec:
+ cd: $home/plugins
+ cmd:
+ - mkdir -p plugins
+ - git clone https://github.com/SamSaffron/blog.git
+ - git clone https://github.com/discourse/docker_manager.git