Skip to content

Instantly share code, notes, and snippets.

@damjack
damjack / Dockerfile
Created April 17, 2018 12:51
Docker for middleman
FROM ubuntu:latest
RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANG en_US.utf8
EXPOSE 4567
ENV HOME /root
RUN apt-get -y update && \
@damjack
damjack / .bash_aliases
Last active June 28, 2018 15:52
Bash Profile and Aliases
# for colors
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
# grep colors
# export GREP_OPTIONS="--color=auto"
# alias command
alias grep="ggrep"
alias g="git"