You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mailu/tests/compose/test-script.sh

18 lines
483 B
Bash

#!/bin/bash
containers_check() {
STATUS=0
for container in mailu_webmail_1 mailu_imap_1 mailu_smtp_1 mailu_antispam_1 mailu_admin_1 mailu_redis_1 mailu_antivirus_1 mailu_webdav_1 mailu_fetchmail_1 mailu_front_1; do
echo "Checking $container"
docker inspect $container | grep '"Status": "running"' || STATUS=1
done
return $STATUS
}
for file in tests/compose/*.env ; do
cp $file .env
docker-compose -f tests/compose/run.yml up -d
sleep 1m
containers_check || exit 1
done