Skip to content

Instantly share code, notes, and snippets.

# Install Brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install boot2docker, docker, and fig
brew install boot2docker
brew install docker
brew install fig
# Create dir for our ELK docker files
mkdir -p ~/wip/elkstack; cd ~/wip/elkstack/
curl -Lso dc-elk.yml https://raw.githubusercontent.com/ChristianKniep/docker-elk/master/dc-elk.yml
curl -Lso elk.yml https://raw.githubusercontent.com/ChristianKniep/docker-elk/master/elk.yml
#!/usr/bin/env ruby
class Test
def initialize
puts "This is a test"
end
end
puts 'Loaded'