build-and-run-docker-sql.sh 206 B

12345
  1. #!/bin/bash
  2. COMPOSE_FILE="-f docker-compose.databases.yml"
  3. export $(grep -v '^#' .env | xargs)
  4. docker compose $COMPOSE_FILE build --no-cache
  5. docker compose $COMPOSE_FILE up $SERVICES_TO_COMPOSE_UP_SQL "$@"