[psql-create-db-user.sh] Switch to Podman

This commit is contained in:
Viyurz 2024-10-16 18:52:00 +02:00
parent 636ac2e336
commit bec7ca433e
Signed by: Viyurz
SSH key fingerprint: SHA256:IskOHTmhHSJIvAt04N6aaxd5SZCVWW1Guf9tEcxIMj8

View file

@ -20,5 +20,5 @@ stmts=(
)
for stmt in "${stmts[@]}"; do
docker exec postgres psql -c "$stmt"
podman exec postgres psql -c "$stmt"
done