10 lines
187 B
Bash
Executable File
10 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Preparing app..."
|
|
|
|
echo "Downloading Docker images..."
|
|
docker pull wordpress:latest
|
|
docker pull mysql:5.7
|
|
|
|
echo "Preparation complete. Ready to start the application."
|