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
require 'spec_helper' | |
describe 'example' do | |
before do | |
execute_query [ | |
load_data("test.table1", "table1", "fixtures/example/table1.txt", []), | |
"TRUNCATE TABLE table2;" | |
] | |
end |
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
source 'https://rubygems.org' | |
group :test do | |
gem 'rspec' | |
gem 'pry' | |
gem 'pry-byebug' | |
gem 'rake', '11.3.0' | |
gem 'docker-api' | |
end |
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
FROM ubuntu:latest | |
RUN apt-get update \ | |
&& apt-get install -y wget \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections | |
RUN apt-get update | |
RUN apt-get install -y software-properties-common | |
RUN add-apt-repository ppa:webupd8team/java |
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
2.3.1 |
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
FROM golang:latest | |
RUN apt-get install -y git | |
RUN ln -fsn /usr/local/go/bin/go /usr/local/bin/go | |
RUN cd /tmp/ && wget --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u5-b13/jdk-8u5-linux-x64.tar.gz && \ | |
tar -zxf jdk-8u5-linux-x64.tar.gz && mv jdk1.8.0_05 /opt/ | |
RUN update-alternatives --install /usr/bin/java java /opt/jdk1.8.0_05/bin/java 100 | |
RUN update-alternatives --install /usr/bin/javac javac /opt/jdk1.8.0_05/bin/javac 100 |
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
FROM rails:latest | |
WORKDIR /app | |
RUN apt-get update | |
RUN apt-get install -y tmux | |
RUN gem install bundler --no-ri --no-rdoc | |
RUN bundle config git.allow_insecure true |
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
ssh -L 4369:localhost:4369 -L 9001:localhost:9001 ip -N | |
erl -name [email protected] -setcookie your_cookie -run observer |
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
FROM trenpixster/elixir | |
WORKDIR /app | |
ADD http://s3.amazonaws.com/s3.hex.pm/installs/1.1.0/hex-0.14.0.ez /tmp/ | |
RUN mix archive.install --force /tmp/hex-0.14.0.ez |
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
FROM golang:latest | |
RUN apt-get update | |
RUN apt-get install sqlite3 libsqlite3-dev | |
RUN mkdir -p /opt/bi-cloud/ |
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
zookeeper-server-start /usr/local/etc/kafka/zookeeper.properties; kafka-server-start /usr/local/etc/kafka/server.properties |