services/postgres/run.sh
2024-11-29 05:05:52 +01:00

11 lines
220 B
Bash
Executable File

#!/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