Docs
  • Introduction
  • Getting Started
    • Quickstart
  • Documentation
    • Integrations
      • Golang
      • HTTP
    • TempDB Querying Language
  • Commands
Powered by GitBook
On this page
  • Running locally using docker
  • Connect to your database
  1. Getting Started

Quickstart

You can either login at out console and get a connection string for connecting to your collections, or alternatively you can run our docker image using the following command.

Running locally using docker

docker run -it -p 8081:8081 tempdb/tempdb
  • -i (interactive): This flag keeps STDIN open even if not attached, allowing you to interact with the container (e.g., provide input, see output).

  • -t (TTY): This flag allocates a pseudo-TTY connected to the container's standard input, which is often needed for interactive applications.

You container should be running on port 6821 and you can verifying it by running the docker pscommand.

Connect to your database

Once the database is running, you can use our integration guide to connect to it.

PreviousIntroductionNextIntegrations

Last updated 1 month ago