This commit is contained in:
qiaofeng1227 2023-05-19 14:29:06 +08:00
parent 97e070e8a0
commit 26e4271a04
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 supervisord
# Install supervisords
RUN apt install -y supervisor
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY config/cmd.sh /cmd.sh

View file

@ -155,7 +155,7 @@ def check_app_url(customer_app_name):
myLogger.info_logger("Checking app url...")
# 如果app的.env文件中含有HTTP_URL项目,需要如此设置 HTTP_URL=ip:port
env_path = "/data/apps/" + customer_app_name + "/.env"
if read_env(env_path, "HTTP_URL").values()[0] == "true":
if list(read_env(env_path, "HTTP_URL").values())[0] == "true":
myLogger.info_logger(customer_app_name + "need to change app url...")
app_url = list(read_env(env_path, "HTTP_URL").values())[0]
ip = "localhost"