Solved bug

This commit is contained in:
Kevin Veen-Birkenbach 2023-12-29 19:55:26 +01:00
parent 1e8683bd62
commit 41b409c8d5
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ admin_password = "{{listmonk_admin_password}}"
[db] [db]
host = "{{database_host}}" host = "{{database_host}}"
port = 5432 port = 5432
user = "{{database_user}}" user = "{{database_username}}"
password = "{{database_password}}" password = "{{database_password}}"
# Ensure that this database has been created in Postgres. # Ensure that this database has been created in Postgres.

View File

@ -23,7 +23,7 @@ for volume in $anonymous_volumes; do
fi fi
((status++)) ((status++))
container_ids=$(docker ps -aq --filter volume=$volume) container_ids=$(docker ps -aq --filter volume=$volume)
if [ -z "$container_ids" ]; then if [ -z "$container_ids" ]; then
echo "Volume $volume is not used by any running containers." echo "Volume $volume is not used by any running containers."