License Key
The license key grants access to the flakiness.io container registry and authorizes running the application.
To obtain a license key, contact us at sales@flakiness.io.
Downloading the Container
Section titled “Downloading the Container”First, authenticate with the container registry using your license key:
echo $FLAKINESS_LICENSE | docker login -u flakiness --password-stdin cr.flakiness.ioThen pull the latest version:
docker pull cr.flakiness.io/app:latestTo verify the container, run:
docker run --rm -it cr.flakiness.io/app ./server/lib/units/app_process.jsYou should see configuration validation errors, which is expected since we haven’t configured the environment yet:
Database configuration[FAIL] PGHOST This env variable must be defined[FAIL] PGPORT This env variable must be defined[FAIL] PGUSER This env variable must be defined[FAIL] PGPASSWORD This env variable must be defined[FAIL] PGDATABASE This env variable must be defined[FAIL] DB_ENCRYPTION_KEY This env variable must be definedERROR: configuration had errors!