mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
16 lines
687 B
Bash
16 lines
687 B
Bash
#!/bin/bash
|
|
|
|
echo ""
|
|
echo "📥 Updating docker-compose.yml file for new domains.."
|
|
|
|
cp /etc/openpanel/docker/compose/1.0/docker-compose.yml /etc/openpanel/docker/compose/1.0/128-docker-compose.yml
|
|
wget -O /etc/openpanel/docker/compose/1.0/docker-compose.yml https://raw.githubusercontent.com/stefanpejcic/openpanel-configuration/refs/heads/main/docker/compose/1.0/docker-compose.yml
|
|
|
|
|
|
echo ""
|
|
echo "📥 Updating .env file for new domains.."
|
|
|
|
cp /etc/openpanel/docker/compose/1.0/.env /etc/openpanel/docker/compose/1.0/128.env
|
|
wget -O /etc/openpanel/docker/compose/1.0/.env https://raw.githubusercontent.com/stefanpejcic/openpanel-configuration/refs/heads/main/docker/compose/1.0/.env
|
|
|