From dfe60faff1e304aeb2e236239ca60dbf6aa9d472 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Wed, 22 Jan 2014 17:07:18 -0500 Subject: [PATCH] A couple of small updates following feedback. We make it even more clear you have to install it into `/var/docker` and that the SSH key should be the key itself as a string, not a filename. --- README.md | 4 ++-- samples/standalone.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6ae8d21..cc863a9 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ If you do not do any of the above, as RoboCop once said, ["there will be… trou The simplest way to get started is the **standalone** template: -1. **Clone** this project from github: `git clone https://github.com/SamSaffron/discourse_docker.git /var/docker` +1. **Clone** this project from github into `/var/docker` on your server: `git clone https://github.com/SamSaffron/discourse_docker.git /var/docker` 2. **Copy** the standalone sample into the containers directory: `cp samples/standalone.yml containers/app.yml` 3. **Edit** `containers/app.yml` with your environment specific information - [bindings](#expose) - - [volumes](#volumes) (make sure you create the appropriate directories on the host) + - [volumes](#volumes) 4. **Bootstrap** the image: `sudo ./launcher bootstrap app` 5. **Start** the image: `sudo ./launcher start app` diff --git a/samples/standalone.yml b/samples/standalone.yml index 56efaa6..f9d5f03 100644 --- a/samples/standalone.yml +++ b/samples/standalone.yml @@ -12,7 +12,8 @@ expose: params: # ssh key so you can log in, a tip, try using the key for root in ~root/.ssh or generate one - # using ssh-keygen + # using ssh-keygen. This should be a string containing the key contents. For more information + # see Troubleshooting in README ssh_key: YOUR_SSH_KEY # git revision to run version: HEAD -- 2.25.1