0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

DuckDB Local UIを立ち上げる

Posted at

はじめに

DuckDB Local UIを立ち上げてみます。
DockerHubにdocker local uiのimageがあったのでこれを使います。
https://hub.docker.com/r/kudaw/duckdb-ui

環境情報

Component Version
PC M1 MacBook Pro
OS macOS 15.6
Docker Desktop 4.44.3
kudaw/duckdb-ui 1.3.2

起動

imageはamd64のものしか提供されていないので、docker runをamd64に対応させて実行します。

docker run --platform=linux/amd64 -p 8080:8080 -p 8443:8443 -d kudaw/duckdb-ui:1.3.2

containerが起動したら、以下のどちらかのURLにアクセスするとDuckDB Local UIにアクセスできます。
http://localhost:8080/
https://localhost:8443/

image.png

最後に

DockDB Local UIを起動することができました。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?