5 lines
162 B
Bash
5 lines
162 B
Bash
#!/bin/bash
|
|
COMPOSE_FILE="-f docker-compose.databases.yml"
|
|
export $(grep -v '^#' .env | xargs)
|
|
docker compose $COMPOSE_FILE down $SERVICES_TO_COMPOSE_UP_SQL "$@"
|