8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
echo "Enter a password for your database "
|
|
read DB_PASS
|
|
|
|
echo 'export DB_PASS='$DB_PASS >> ~/.bashrc
|
|
source ~/.bashrc
|
|
|
|
docker-compose up -d
|