Skip to content

Instantly share code, notes, and snippets.

@jyuch
Last active September 29, 2016 14:26
Show Gist options
  • Save jyuch/cd2856fcb0d62acb21bc988904ed633f to your computer and use it in GitHub Desktop.
Save jyuch/cd2856fcb0d62acb21bc988904ed633f to your computer and use it in GitHub Desktop.
Dockerでpsqlをサクッとブチ上げるアレ
FROM ubuntu:16.04
RUN set -x \
&& apt-get update \
&& apt-get install -y postgresql-client \
&& rm -rf /var/lib/apt/lists/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment