Skip to content

Instantly share code, notes, and snippets.

@nicbet
Created February 11, 2019 19:29
Show Gist options
  • Save nicbet/0074f25882a3ce37606165fc2824300c to your computer and use it in GitHub Desktop.
Save nicbet/0074f25882a3ce37606165fc2824300c to your computer and use it in GitHub Desktop.
Development Database (postgresql) with Docker
#!/bin/bash
docker run --name $@ \
-d \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_USER=postgres \
-v $(pwd)/database:/var/lib/postgresql/data \
-p 5432:5432 \
postgres:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment