MirrorNest
← すべてのガイド

NocoDB

NocoDB turns any database into a smart spreadsheet, offering an Airtable-like interface over your own Postgres/MySQL data, with an official one-line installer for Docker Compose.

このガイドは上記リンク先にあるNocoDB公式ドキュメントをもとに作成されています。ディストリビューションやプロジェクトのバージョンは時間とともに変わるため、本番サーバーでこれらのコマンドを実行する前に、必ず公式ドキュメントで正確なパッケージ名・バージョン名を確認してください。
  1. 1Run the official installer

    This generates a ready-to-run Compose stack (NocoDB, a background worker, PostgreSQL, and Redis) in a new nocodb/ directory and starts it.

    curl -fsSL https://install.nocodb.com/noco.sh | bash -s -- --quick
  2. 2Wait for first boot

    The first run pulls all images, which can take a few minutes.

  3. 3Sign up

    Open http://localhost:8080, sign up with an email and password — the first account created becomes the super admin.

  4. 4Manage the stack

    Run these from inside the nocodb/ directory.

    docker compose logs -f nocodb
    docker compose down
    docker compose pull && docker compose up -d