Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ghusta
Last active November 14, 2018 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ghusta/40e6045dc06b249f9cb8880ef378e4b1 to your computer and use it in GitHub Desktop.
Save ghusta/40e6045dc06b249f9cb8880ef378e4b1 to your computer and use it in GitHub Desktop.
Docker image Postgres with vi(m)
FROM postgres:latest
RUN apt-get update && \
apt-get install -y vim
@ghusta
Copy link
Author

ghusta commented Jul 24, 2018

To build with a corporate proxy :

docker build --tag postgres-vi --build-arg http_proxy=http://proxy_host:proxy_port/ .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment