Releases & MaintenanceReleases & Beta Access

Installing the Beta

Beta access

Prisma CLI

You can get access to the latest beta release of the Prisma CLI by appending the @beta-tag when installing it via NPM:

npm install -g prisma@beta

Prisma server (Docker)

You can find the latest beta Prisma Docker image on Docker Hub. To use the latest version of a Prisma server, you need to configure the image property in your Docker Compose file accordingly by appending -beta to the the version number, e.g.:

version: '3'
services:
  prisma:
    image: prismagraphql/prisma:1.32-beta
    restart: always
    ports:
      - '4466:4466'
    environment:
      PRISMA_CONFIG: |
        managementApiSecret: __YOUR_MANAGEMENT_API_SECRET__
        port: __YOUR_PRISMA_SERVER_PORT__
        databases:
          default:
            connector: __YOUR_DATABASE_CONNECTOR__
            host: __YOUR_DATABASE_HOST__
            port: __YOUR_DATABASE_PORT__
            user: __YOUR_DATABASE_USER__
            password: __YOUR_DATABASE_PASSWORD__
Copy

To then reboot your Prisma server with the new version, run:

docker-compose up -d

You can also pull the latest beta version directly using the Docker CLI:

docker pull prismagraphql/prisma:1.32-beta