Files
tam3/deployment/remote_server_secure/start-server.sh

19 lines
726 B
Bash
Raw Normal View History

2025-10-03 18:02:40 -04:00
#!/bin/bash
mkdir -p nginx/certs
echo "This part will ask you a bunch of questions for the self-signed cert. Answer them, I can't control it. For common name put the name or IP of the server which the clients can access it."
openssl req -x509 -newkey rsa:4096 -keyout nginx/certs/nginx.key -out nginx/certs/nginx.crt -sha256 -days 3650 -nodes
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
2025-10-11 14:25:03 -04:00
if [ -x "$(command -v docker)" ]; then
docker compose up -d
2025-10-11 17:10:38 -04:00
elif [ -x "$(command -v podman)" ]; then
2025-10-11 14:25:03 -04:00
podman compose up -d
else
echo "Neither Docker nor Podman are installed. Please install whichever you prefer and try again."
exit 1
fi