diff --git a/postgres/run.sh b/postgres/run.sh new file mode 100755 index 0000000..819055d --- /dev/null +++ b/postgres/run.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +docker run --rm \ + --name postgres \ + --network unitservices \ + -e POSTGRES_PASSWORD=placeholder \ + --publish 5432:5432/tcp \ + postgres + +# TODO: After testing is done, the published port can be removed