windows下运行konga及konga使用
2021-03-05 19:25
标签:post running ada star 配置 shel lan ken always 1.下载代码 2.配置环境变量 3.运行代码 4.开启konga配置页面 docker下安装比较简单,参考https://github.com/pantsel/konga#running-konga docker下运行适合生产环境。 windows下运行konga及konga使用 标签:post running ada star 配置 shel lan ken always 原文地址:https://www.cnblogs.com/mbpframework/p/12891874.htmlwindows下运行konga及konga使用
node运行
git clone https://github.com/pantsel/konga.git
cd konga
npm i
PORT=1337
NODE_ENV=production
KONGA_HOOK_TIMEOUT=120000
DB_ADAPTER=postgres
DB_URI=postgresql://konga:konga@192.168.0.139:5432/konga
KONGA_LOG_LEVEL=warn
TOKEN_SECRET=some_secret_token
node ./bin/konga.js prepare --adapter postgres --uri postgresql://localhost:5432/konga
npm run production
docker运行
docker run --rm pantsel/konga:latest -c prepare -a postgres -u postgresql://konga:konga@172.16.51.112:5432/konga
docker run -d --restart always -p 1337:1337 --network kong-net -e "TOKEN_SECRET=some_secret_token" -e "DB_ADAPTER=postgres" -e "DB_URI=postgresql://konga:konga@172.16.51.112:5432/konga" -e "NODE_ENV=production" --name konga pantsel/konga
文章标题:windows下运行konga及konga使用
文章链接:http://soscw.com/index.php/essay/60574.html