1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-07-01 00:44:57 +02:00
Files
Mailu/tests/compose/test-script.sh

40 lines
755 B
Bash
Raw Normal View History

2018-10-04 14:42:34 +03:00
#!/bin/bash
2018-10-05 11:55:01 +03:00
containers=(
webmail_1
imap_1
smtp_1
antispam_1
admin_1
redis_1
antivirus_1
webdav_1
# fetchmail_1
front_1
2018-10-05 11:55:01 +03:00
)
containers_check() {
2018-10-04 17:51:17 +03:00
STATUS=0
2018-10-05 11:55:01 +03:00
for container in "${containers[@]}"; do
echo "Checking ${DOCKER_ORG}_${container}"
docker inspect "${DOCKER_ORG}_${container}" | grep '"Status": "running"' || STATUS=1
done
2018-10-04 17:51:17 +03:00
return $STATUS
}
2018-10-05 11:55:01 +03:00
container_logs() {
for container in "${containers[@]}"; do
echo "Showing logs for ${DOCKER_ORG}_${container}"
docker container logs "${DOCKER_ORG}_${container}"
2018-10-05 11:55:01 +03:00
done
}
2018-10-04 15:19:40 +03:00
for file in tests/compose/*.env ; do
2018-10-04 14:42:34 +03:00
cp $file .env
docker-compose -f tests/compose/run.yml -p $DOCKER_ORG up -d
sleep 1m
2018-10-05 11:55:01 +03:00
docker ps
container_logs
2018-10-04 17:51:17 +03:00
containers_check || exit 1
2018-10-04 14:42:34 +03:00
done