zkt25/z2/prepare-app.sh
Andrii Pervashov aa03f35ae0 z2 upload
2025-04-10 08:22:24 +02:00

17 lines
329 B
Bash

#!/bin/bash
set -e
echo "Preparing..."
sudo mkdir -p /mnt/data/mongodb
sudo chmod 777 /mnt/data/mongodb
echo "Building the Frontend..."
docker build --no-cache -t expense-tracker-frontend:latest ./Frontend
echo "Building the Backend..."
docker build --no-cache -t expense-tracker-backend:latest ./Backend
echo "Completed!"