Last active
August 29, 2015 13:56
-
-
Save mikesplain/9337547 to your computer and use it in GitHub Desktop.
discourse installer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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