0
点赞
收藏
分享

微信扫一扫

Docker 环境下部署 redash

您好 2022-09-27 阅读 89


环境: 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: “xxxx@163.com”
REDASH_MAIL_PASSWORD: “xxxxxx”
REDASH_MAIL_DEFAULT_SENDER: “xxxxx@163.com”
复制代码
邮箱测试:

docker-compose run --rm server manage send_test_mail

二、问题

1、npm build报错处理

2、安装pip

3、解决启动错误:(docker-entrypoint)
​​​   https://www.jianshu.com/p/ffe2b5a08897​​

让每一天过的有意义!


举报

相关推荐

0 条评论