Establishes a containerized development and production environment. Creates Dockerfiles, docker-compose configurations, and associated scripts. Prioritizes easy setup, dependency isolation, and platform consistency. Enhances dev experience and simplifies deployment.
9 lines
163 B
Bash
Executable file
9 lines
163 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
docker compose -f docker-compose.prod.yml down
|
|
echo "[prod-down] Production environment stopped"
|
|
|
|
|