Files
fast_api_template/{{cookiecutter.project_slug}}/scripts/test.sh
T

19 lines
566 B
Bash
Raw Normal View History

#! /usr/bin/env sh
# Exit in case of error
set -e
2020-04-19 16:44:12 +02:00
DOMAIN=backend \
SMTP_HOST="" \
TRAEFIK_PUBLIC_NETWORK_IS_EXTERNAL=false \
INSTALL_DEV=true \
docker-compose \
2020-04-19 16:44:12 +02:00
-f docker-compose.yml \
config > docker-stack.yml
docker-compose -f docker-stack.yml build
docker-compose -f docker-stack.yml down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
docker-compose -f docker-stack.yml up -d
2020-04-19 12:34:03 +02:00
docker-compose -f docker-stack.yml exec -T backend bash /app/tests-start.sh "$@"
docker-compose -f docker-stack.yml down -v --remove-orphans