feat(forge): add postgresql instance

This commit is contained in:
Marc 2024-04-02 14:52:02 -04:00
parent 9a068d849d
commit b4a349bd39
Signed by: marc
GPG key ID: 048E042F22B5DC79

View file

@ -20,6 +20,16 @@ podman pod create \
--replace \
"code-forge"
# Start app database.
podman run \
-td \
--pod "code-forge" \
--name "code-forge_db" \
-v code-forge_db:/var/lib/postgresql/data:Z \
--replace \
postgres:16.2
# Start webapp.
podman run \