11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/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."
|