This guide walks you through the essential steps to quickly set up the Clarify local test server environment using Docker and PostgreSQL. Note that this approach is not recommended for production environments.
Step 1: Install Docker Desktop
Refer to these Docker download instructions - Download Docker Desktop.
Step 2: Start a Postgres 16 Instance with Docker
Run this command in the terminal:
docker run --name pg16 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=extol -e POSTGRES_DB=ebi4 -p 5432:5432 -d postgres:16
This creates a Postgres 16 instance with:
- Database: ebi4
- User: postgres
- Password: extol
- Port: 5432
Check the Docker Desktop UI for a container named pg16. Click the container for logs and details. Once running, proceed to run Clarify.
Step 3: Launch the Local Test Server from the Clarify Studio
Refer to steps (1 and 2) to select and start local test.
Comments
0 comments
Please sign in to leave a comment.