8 lines
179 B
Bash
Executable File
8 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gen_password=$(cat /dev/urandom | tr -dc A-Za-z0-9 | head -c 32)
|
|
|
|
echo "DB_LOCATION=./tam3-db" > .env
|
|
echo "DB_PASSWORD=${gen_password}" >> .env
|
|
|
|
docker compose up -d |