Skip to content

Instantly share code, notes, and snippets.

@pszaflarski
Last active June 2, 2020 20:59
Show Gist options
  • Save pszaflarski/332648b7be2ba4a7e2bebd1331a8ad76 to your computer and use it in GitHub Desktop.
Save pszaflarski/332648b7be2ba4a7e2bebd1331a8ad76 to your computer and use it in GitHub Desktop.
spin up postgres on linux/mac without having to download it
docker pull postgres
mkdir -p $HOME/docker/volumes/postgres_dh
docker run --rm --name pg-docker -e POSTGRES_PASSWORD=docker -d -p 5433:5432 -v $HOME/docker/volumes/postgres_dh:/var/lib/postgresql/data postgres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment