Installation Docker
Install Docker
Install Biometrid
mkdir biometrid
cd biometrid
touch docker-compose.yamlEdit docker-compose.yaml
version: '3'
services:
nodejs:
image: polygoninnovation/biometrid
environment:
PROD_API_BASE_URL: '<your_prod_url>'
PROD_API_VERSION: 1.0
PROD_PORT: <your_prod_port>
PROD_BODY_LIMIT: <your_prod_body_limit>
PROD_MONGO_DB_URL: '<your_mongo_db_url>'
PROD_MONGO_DEBUG: '<your_mongo_debug>'
SIGN_MICROSERVICE_URL: '<your_sign_url>'
SIGN_MICROSERVICE_PORT: <your_sign_port>
PROXY_URL: '<your_proxy_url>'
PROXY_PORT: <your_proxy_port>
PROXY_USER: <your_proxy_user>
PROXY_PWD: <your_proxy_password>
ports:
- '<external_port>:<internal_port>'Run App
Last updated
Was this helpful?