On-premise deployment of Parea in your environment via Docker
Clone repo
Setup .env file
docker
directory, copy the .env.sample
file to .env
and fill-in your organization slug into REACT_APP_SELF_HOST_ORGANIZATION_NAME
.
You can optionally configure your SSO provider, re-generate the auth/JWT secret and any secret to encrypt public keys, and update the ports of the frontend/backend/auth services.
Note, you must not comment out any environment variables even if they are empty.Start the deployment
docker-compose pull && docker-compose up -d
to pull and run the docker images.Update backend URL in SDK
PAREA_BASE_URL
environment variable to the backend URL.
Note, the backend runs by default on http://localhost:8000 on the host machine.docker-compose down
.
docker-compose pull
to pull the latest imagesdocker-compose down
to stop the containersdocker-compose up -d
to start the containers