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
154 B
Bash
Executable file
9 lines
154 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
docker compose -f docker-compose.dev.yml down
|
|
echo "[dev-down] Dev environment stopped"
|
|
|
|
|