Skip to main content

Docker Compose

Download and Run

wget https://user:[email protected]/docker/definity-app-0.70.7.tar.gz
tar xzvf definity-app-*.tar.gz
cd definity-app
export DEFINITY_IMAGE_VERSION=0.70.7
docker-compose up -d

Images

If you prefer to download already built images:

docker pull ${DEFINITY_REPO}/definity-frontend:0.70.7
docker pull ${DEFINITY_REPO}/definity-backend:0.70.7

Check DB

verify schema creation/migrations:

docker-compose logs -f backend-init

Test - Hello World

DEFINITY_HOST=http://localhost:8000 bash server_hello_world.sh

Maintenance

OPTIONAL - Send Definity Anonymized DB dump

Produces a pg_dump tarball with customer-identifying values redacted, safe to share with Definity engineering for support or debugging. The utility ships inside the Definity backend image — nothing to install.

# One command — the tarball lands in your current directory.
docker compose exec -T backend-log bash scripts/anonymize_db.sh > definity-anon.tar.gz
gzip -t definity-anon.tar.gz && echo "OK: definity-anon.tar.gz"

# Send the resulting definity-anon.tar.gz file to Definity support.

The > is a local shell redirect; bytes never live as a file inside the container. Status messages appear on your terminal during the dump; the anonymized tarball is what gets captured to the file. gzip -t verifies the tarball CRC — if it fails, re-run the command above.