11 lines
220 B
Bash
Executable File
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
|