8 lines
229 B
Bash
8 lines
229 B
Bash
#!/bin/sh
|
|
set -eu
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
./scripts/validate-env "${ENV_FILE:-.env}"
|
|
docker compose --env-file "${ENV_FILE:-.env}" --profile ops run --rm seed-settings
|
|
echo "Seed and mandatory-settings validation completed."
|