#!/bin/bash # Build the Django application Docker image echo "Building Django application image..." docker build -t django-app:latest . # Create a local directory for PostgreSQL data mkdir -p /mnt/data/postgres echo "Application preparation complete."