1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RedashをDockerでお試し。2018-04-09

Posted at

内容

Redashをお試ししたいので、Dockerで動かしてみます

準備

  • git
  • docker
  • docker-compose

などが必要です

が、インストール方法などは割愛します

手順

git clone

# 適当な作業ディレクトリに移動して
% git clone https://github.com/getredash/redash.git
% cd redash/

docker-compose up

# 今回はとりあえずお試しするだけなので特に編集せずそのまま
# `docker-compose.production.yml` を使います。
% docker-compose -f ./docker-compose.production.yml up -d
...略。初回はimageのダウンロードなどで時間がかかります。
...
Creating redash_postgres_1
Creating redash_worker_1
Creating redash_redis_1
Creating redash_server_1
Creating redash_nginx_1

データベース作成

% docker-compose -f docker-compose.production.yml run --rm server create_db

ブラウザで確認

ここまで終われば http://localhost にアクセスします。ログイン画面が確認できます。

スクリーンショット 2018-04-09 17.43.32.png

適当に入力して「Setup」すればログインできます。
スクリーンショット 2018-04-09 17.47.08.png

あとは接続先の設定など適宜行います。

まとめ

DockerでRedashをお試しできる状態にしました

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?