Files
my-app/.gitea/workflows/scripts/deploy-backend.sh
2025-11-04 19:25:35 +01:00

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"