Added postgres

This commit is contained in:
palo 2024-11-29 05:05:52 +01:00
parent eb679767df
commit 8d11fda61c

10
postgres/run.sh Executable file
View File

@ -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