Skip to content

Instantly share code, notes, and snippets.

View claudiosikeda's full-sized avatar
🏠
Working from home

Claudio Ikeda claudiosikeda

🏠
Working from home
View GitHub Profile
@claudiosikeda
claudiosikeda / README.txt
Last active May 2, 2017 01:00
Emacs configuration
From github:
autopair;
emacs-async;
emacs-neotree;
Fill-Column-Indicator;
helm;
helm-projectile;
highlight-indent-guides;
From Melpa:
@claudiosikeda
claudiosikeda / Dockerfile
Last active May 2, 2017 01:02
Configure a rails 5.0 app to run inside docker using postgis 9.6, on Ubuntu 16.04
FROM ruby:2.3.1
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
# postgresql repo for Ubuntu 16.04
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" > /etc/apt/sources.list.d/pgdg.list
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
# install postgresql-client
RUN apt-get update && apt-get install -y postgresql-client-9.6 --no-install-recommends && rm -rf /var/lib/apt/lists/*