mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 04:56:45 +00:00
49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# InvenTree environment variables for docker compose deployment
|
|
|
|
# Specify the location of the external data volume
|
|
# By default, placed in local directory 'inventree-data'
|
|
INVENTREE_EXT_VOLUME=./inventree-data
|
|
|
|
# Ensure debug is false for a production setup
|
|
INVENTREE_DEBUG=False
|
|
INVENTREE_LOG_LEVEL=WARNING
|
|
|
|
# InvenTree admin account details
|
|
# Un-comment (and complete) these lines to auto-create an admin acount
|
|
#INVENTREE_ADMIN_USER=
|
|
#INVENTREE_ADMIN_PASSWORD=
|
|
#INVENTREE_ADMIN_EMAIL=
|
|
|
|
# Database configuration options
|
|
INVENTREE_DB_ENGINE=postgresql
|
|
INVENTREE_DB_NAME=inventree
|
|
INVENTREE_DB_HOST=inventree-db
|
|
INVENTREE_DB_PORT=5432
|
|
|
|
# Database credentials - These should be changed from the default values!
|
|
INVENTREE_DB_USER=pguser
|
|
INVENTREE_DB_PASSWORD=pgpassword
|
|
|
|
# Redis cache setup
|
|
# Refer to settings.py for other cache options
|
|
INVENTREE_CACHE_ENABLED=True
|
|
INVENTREE_CACHE_HOST=inventree-cache
|
|
INVENTREE_CACHE_PORT=6379
|
|
|
|
# Options for gunicorn server
|
|
INVENTREE_GUNICORN_TIMEOUT=90
|
|
|
|
# Enable custom plugins?
|
|
INVENTREE_PLUGINS_ENABLED=True
|
|
|
|
# Run migrations automatically?
|
|
INVENTREE_AUTO_UPDATE=True
|
|
|
|
# Image tag that should be used
|
|
INVENTREE_TAG=stable
|
|
|
|
# Site URL - update this to match your host
|
|
INVENTREE_SITE_URL="http://inventree.localhost"
|
|
|
|
COMPOSE_PROJECT_NAME=inventree
|