This commit is contained in:
qiaofeng1227 2023-05-23 14:38:52 +08:00
parent e4db71ec60
commit 9851f2e941
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ COPY static ./static
COPY requirements.txt main.py ./
RUN apt update
# Install supervisords
# Install supervisord
RUN apt install -y supervisor
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY config/cmd.sh /cmd.sh

View file

@ -1055,7 +1055,7 @@ def set_domain(domain, app_id):
if domain == "":
ip_result = shell_execute.execute_command_output_all("cat /data/apps/stackhub/docker/w9appmanage/public_ip")
domain = ip_result["result"].rstrip('\n')
cmd = "echo APP_URL=" + domain + " >> /data/apps/" + customer_name +"/.env"
cmd = 'echo -e "\nAPP_URL="' + domain + " >> /data/apps/" + customer_name +"/.env"
shell_execute.execute_command_output_all(cmd)
myLogger.info_logger("set_domain success")