diff --git a/psql-create-db-user.sh b/psql-create-db-user.sh index 40be8d7..825a6a5 100755 --- a/psql-create-db-user.sh +++ b/psql-create-db-user.sh @@ -20,5 +20,5 @@ stmts=( ) for stmt in "${stmts[@]}"; do - docker exec postgres psql -c "$stmt" + podman exec postgres psql -c "$stmt" done