9 lines
160 B
Bash
9 lines
160 B
Bash
#!/bin/bash
|
|
|
|
echo "Building Docker image..."
|
|
docker build -t my-web-app:latest ./app
|
|
|
|
echo "Creating volume directory..."
|
|
mkdir -p ./data/postgres
|
|
|
|
echo "Done." |