Skip to content

Instantly share code, notes, and snippets.

@mikesplain
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save mikesplain/9337547 to your computer and use it in GitHub Desktop.

Select an option

Save mikesplain/9337547 to your computer and use it in GitHub Desktop.
discourse installer
# This will install Docker and build discourse
#Docker
curl -s https://get.docker.io/ubuntu/ | sudo sh
#Packages (both neccessarly and some to help debug)
apt-get update
apt-get install git build-essential htop iftop -y
### Discourse
# Config
install -g docker -m 2775 -d /var/docker
usermod -a -G docker root
git clone https://github.com/discourse/discourse_docker.git /var/docker
cd /var/docker; cp samples/standalone.yml containers/app.yml
./launcher bootstrap app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment