add service files, -it was unneeded here

This commit is contained in:
Ruben 2025-07-17 02:04:40 -05:00
commit d547279f8d
No known key found for this signature in database
GPG key ID: 8EA836555FB6D9A5
5 changed files with 31 additions and 1 deletions

View file

@ -268,7 +268,7 @@ function postgres_vacuum_self {
return 1
fi
# vacuum self
docker exec -it postgres-db-1 /bin/bash -c "psql -U postgres -c 'VACUUM ANALYZE;'"
docker exec postgres-db-1 /bin/bash -c "psql -U postgres -c 'VACUUM ANALYZE;'"
# unset secrets
unset $(grep -v '^#' /etc/secrets/postgres.env | sed -E 's/(.*)=.*/\1/' | xargs)
}