mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2024-12-14 22:30:41 +05:30
19 lines
747 B
Bash
Executable File
19 lines
747 B
Bash
Executable File
#!/bin/sh
|
|
echo "Enter a hostname for the Frontend (eg: piped.kavin.rocks):" && read -r frontend
|
|
echo "Enter a hostname for the Backend (eg: pipedapi.kavin.rocks):" && read -r backend
|
|
echo "Enter a hostname for the Proxy (eg: pipedproxy.kavin.rocks):" && read -r proxy
|
|
echo "Enter the reverse proxy you would like to use (either caddy or nginx):" && read -r reverseproxy
|
|
echo "Enter a port to use for the reverse proxy:" && read -r port
|
|
|
|
rm -rf config/
|
|
rm -f docker-compose.yml
|
|
|
|
cp -r template/ config/
|
|
|
|
sed -i "s/FRONTEND_HOSTNAME/$frontend/g" config/*
|
|
sed -i "s/BACKEND_HOSTNAME/$backend/g" config/*
|
|
sed -i "s/PROXY_HOSTNAME/$proxy/g" config/*
|
|
sed -i "s/PORT_VALUE/$port/g" config/*
|
|
|
|
mv config/docker-compose.$reverseproxy.yml docker-compose.yml
|