### Install Drizzle Gateway on Linux ARM64 Source: https://gateway.drizzle.team/docs/binary Installs Drizzle Gateway on a Linux ARM64 system. This involves creating a directory, downloading the binary using curl, making it executable, and then running it. The gateway can be accessed at http://localhost:4983. ```shell mkdir drizzle-gateway cd drizzle-gateway curl -Lo start https://pub-e240a4fd7085425baf4a7951e7611520.r2.dev/drizzle-gateway-1.1.1-linux-arm64 chmod +x start ./start # Once Drizzle Gateway is running, you can access it via the web interface at http://localhost:4983 ``` -------------------------------- ### Install Drizzle Gateway on Linux x64 Source: https://gateway.drizzle.team/docs/binary Installs Drizzle Gateway on a Linux x64 system. The process includes creating a directory, downloading the binary via curl, setting execute permissions, and running the application. Access the gateway at http://localhost:4983. ```shell mkdir drizzle-gateway cd drizzle-gateway curl -Lo start https://pub-e240a4fd7085425baf4a7951e7611520.r2.dev/drizzle-gateway-1.1.1-linux-x64 chmod +x start ./start # Once Drizzle Gateway is running, you can access it via the web interface at http://localhost:4983 ``` -------------------------------- ### Install Drizzle Gateway on macOS x64 Source: https://gateway.drizzle.team/docs/binary Installs Drizzle Gateway on a macOS x64 system. This procedure includes creating a directory, downloading the binary with curl, setting execute permissions, and running the gateway. Access it via http://localhost:4983. ```shell mkdir drizzle-gateway cd drizzle-gateway curl -Lo start https://pub-e240a4fd7085425baf4a7951e7611520.r2.dev/drizzle-gateway-1.1.1-macos-x64 chmod +x start ./start # Once Drizzle Gateway is running, you can access it via the web interface at http://localhost:4983 ``` -------------------------------- ### Docker: Run Drizzle Gateway Source: https://gateway.drizzle.team/docs/docker This snippet demonstrates how to pull the latest Drizzle Gateway Docker image, create a named volume for persistent storage, and run the gateway container. It includes options for setting the port, store path, and master password via environment variables. Access the gateway at http://localhost:4983 after it's running. ```docker # pull latest version docker pull ghcr.io/drizzle-team/gateway:latest # persistent volume is required for configuration file docker volume create drizzle-gateway # start the studio docker run -d \ --name drizzle-gate \ --restart always \ -p 4983:4983 \ -e PORT=4983 \ -e STORE_PATH=./app \ -e MASTERPASS=your_master_password \ -v drizzle-gateway:/app \ ghcr.io/drizzle-team/gateway:latest # Once Drizzle Gateway is running, you can access it via the web interface at http://localhost:4983 ``` -------------------------------- ### Install Drizzle Gateway on macOS ARM64 Source: https://gateway.drizzle.team/docs/binary Installs Drizzle Gateway on a macOS ARM64 system. Steps involve creating a directory, downloading the binary using curl, granting execute permissions, and launching the gateway. It is accessible at http://localhost:4983. ```shell mkdir drizzle-gateway cd drizzle-gateway curl -Lo start https://pub-e240a4fd7085425baf4a7951e7611520.r2.dev/drizzle-gateway-1.1.1-macos-arm64 chmod +x start ./start # Once Drizzle Gateway is running, you can access it via the web interface at http://localhost:4983 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.