8 lines
141 B
Bash
Executable File
8 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
echo "Preparing app..."
|
|
|
|
docker network create app_network || true
|
|
docker volume create mongo_data || true
|
|
|
|
docker compose build
|