From bec7ca433eea7558844facbfc28c054de6403c39 Mon Sep 17 00:00:00 2001 From: Viyurz Date: Wed, 16 Oct 2024 18:52:00 +0200 Subject: [PATCH] [psql-create-db-user.sh] Switch to Podman --- psql-create-db-user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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