fix(install): host env variable

This commit is contained in:
Jake Turner 2025-12-05 18:41:54 -08:00
parent 529af9835f
commit 2985929079
No known key found for this signature in database
GPG Key ID: 694BC38EF2ED4844
2 changed files with 1 additions and 2 deletions

View File

@ -252,7 +252,6 @@ download_management_compose_file() {
# Inject dynamic env values into the compose file
echo -e "${YELLOW}#${RESET} Configuring docker-compose file env variables...\\n"
sed -i "s|HOST=replaceme|HOST=${local_ip_address}|g" "$compose_file_path"
sed -i "s|URL=replaceme|URL=http://${local_ip_address}:8080|g" "$compose_file_path"
sed -i "s|APP_KEY=replaceme|APP_KEY=${app_key}|g" "$compose_file_path"

View File

@ -17,7 +17,7 @@ services:
- LOG_LEVEL=debug
- DRIVE_DISK=fs
- APP_KEY=replaceme
- HOST=replaceme
- HOST=0.0.0.0
- URL=replaceme
- DB_HOST=mysql
- DB_PORT=3306