I hereby claim:
- I am keiththomps on github.
- I am keiththomps (https://keybase.io/keiththomps) on keybase.
- I have a public key ASBRytaeLef0vL4omBTJZ0JbcdpcOyQMb_6OD00bu9laEAo
To claim this, I am signing this object:
| FROM ruby:2.3 | |
| RUN apt-get update -yqq \ | |
| && apt-get install -yqq --no-install-recommends \ | |
| postgresql-client \ | |
| && rm -rf /var/lib/apt/lists | |
| WORKDIR /usr/src/app | |
| COPY Gemfile* ./ | |
| RUN bundle install |
| FROM alpine:3.4 | |
| MAINTAINER Keith Thompson <[email protected]> | |
| RUN apk add bash --update-cache | |
| CMD bash |
| FROM ruby:2.3.1 | |
| RUN apt-get update -yqq \ | |
| && apt-get install -yqq --no-install-recommends \ | |
| postgresql-client \ | |
| nodejs \ | |
| && apt-get -q clean \ | |
| && rm -rf /var/lib/apt/lists | |
| # Pre-install gems with native extensions |
| call plug#begin('~/.config/nvim/plugged') | |
| function! DoRemote(arg) | |
| UpdateRemotePlugins | |
| endfunction | |
| Plug 'Shougo/deoplete.nvim', { 'do': function('DoRemote'), 'tag': '*' } | |
| let g:deoplete#enable_at_startup = 1 | |
| Plug 'AndrewRadev/splitjoin.vim' |
| require "spec_helper" | |
| class MyClass | |
| def self.run(command) | |
| Signal.trap("TERM") { trap_term } | |
| `#{command}` | |
| end | |
| def self.trap_term |
| set nocompatible | |
| filetype off | |
| filetype plugin indent on | |
| set ttyfast | |
| set laststatus=2 | |
| set encoding=utf-8 " Set default encoding to UTF-8 | |
| set autoread " Automatically reread changed files without asking me anything |
| set nocompatible | |
| filetype off | |
| filetype plugin indent on | |
| set ttyfast | |
| set laststatus=2 | |
| set encoding=utf-8 " Set default encoding to UTF-8 | |
| set autoread " Automatically reread changed files without asking me anything |
I hereby claim:
To claim this, I am signing this object:
| # Download the latest Ghost Image | |
| resource "docker_image" "image_id" { | |
| name = "${var.image}" | |
| } | |
| # Start the Container | |
| resource "docker_container" "container_id" { | |
| name = "${var.container_name}" | |
| image = "${docker_image.image_id.latest}" | |
| ports { |
| package main | |
| import ( | |
| "fmt" | |
| "io/ioutil" | |
| "net/http" | |
| "net/url" | |
| "strings" | |
| ) |