dify/web/docker/entrypoint.sh

24 lines
621 B
Bash
Raw Normal View History

#!/bin/bash
2023-05-15 08:51:32 +08:00
# if you are using windows, you may need to convert the file to unix format
# you can use the Ubuntu terminal to convert this file to unix format
# otherwise, you may get the error after running the docker container
# sudo apt-get install dos2unix
# dos2unix entrypoint.sh
2023-05-15 08:51:32 +08:00
set -e
export NEXT_PUBLIC_DEPLOY_ENV=${DEPLOY_ENV}
export NEXT_PUBLIC_EDITION=${EDITION}
2024-01-18 14:44:37 +08:00
export NEXT_PUBLIC_API_PREFIX=${CONSOLE_API_URL}/console/api
export NEXT_PUBLIC_PUBLIC_API_PREFIX=${APP_API_URL}/api
export NEXT_PUBLIC_SENTRY_DSN=${SENTRY_DSN}
2023-10-16 15:26:25 +08:00
export NEXT_PUBLIC_SITE_ABOUT=${SITE_ABOUT}
2023-05-15 08:51:32 +08:00
pm2 start ./pm2.json --no-daemon