11 lines
271 B
Bash
11 lines
271 B
Bash
#! /bin/bash
|
|
|
|
set -e # Exit immediately if a command exits with a non-zero status
|
|
|
|
docker compose -f docker-compose-dev.yml down --remove-orphans --volumes
|
|
|
|
docker system prune -f
|
|
|
|
docker compose -f docker-compose-dev.yml up -d
|
|
|
|
echo "Started all containers successfully" |