6 lines
214 B
Bash
6 lines
214 B
Bash
#!/bin/bash
|
|
echo ""
|
|
echo "Starting an Postgres container listening on http://localhost:{{localPort}}"
|
|
echo ""
|
|
echo ""
|
|
docker run --rm -v $(pwd)/data/:/var/lib/postgresql/data/ -p {{localPort}}:80 {{localContainer}} |