Docker 环境下部署 redash

Docker 环境下部署 redash,第1张

Docker 环境下部署 redash

环境: centos7

官网:https://redash.io/help/open-source/dev-guide/docker


一、安装步骤 1、虚拟机安装

  安装vmware,并安装centos7

2、安装docker   docker安装手册 3、安装nodejs

  centos下安装Nodejs

4、redash安装   1)、clone git repostory
git clone https://github.com/getredash/redash.git
  2)、Create Docker Services
docker-compose up
  3)、Install npm Packages
npm install
  4)、Create Database
# Create tables
docker-compose run --rm server create_db # Create database for tests
docker-compose run --rm postgres psql -h postgres -U postgres -c "create database tests"
5、启动redash
docker-compose -f docker-compose.yml up -d
6、邮箱配置

  参考地址:

https://redash.io/help/open-source/setup/

https://ithelp.ithome.com.tw/articles/10207745?sc=iThelpR

https://www.copylian.com/technology/201.html

在docker-compose.yml 中配置

REDASH_MAIL_SERVER: "smtp.163.com"
REDASH_MAIL_PORT: 465
REDASH_MAIL_USE_TLS: "false"
REDASH_MAIL_USE_SSL: "true"
REDASH_MAIL_USERNAME: "[email protected]"
REDASH_MAIL_PASSWORD: "xxxxxx"
REDASH_MAIL_DEFAULT_SENDER: "[email protected]"

邮箱测试:

docker-compose run --rm server manage send_test_mail

二、问题   1、npm build报错处理

  https://blog.csdn.net/wq18512847606/article/details/80847751

  2、安装pip

  https://www.cnblogs.com/BillyYoung/p/11088470.html

  3、解决启动错误:(docker-entrypoint)

  https://www.jianshu.com/p/ffe2b5a08897

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/588833.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-12
下一篇 2022-04-12

发表评论

登录后才能评论

评论列表(0条)

保存