/
/
/
1# CVAT images tag (controls which prebuilt images to pull)
2CVAT_VERSION={{ cvat_image_tag }}
3
4# Hostname for Traefik routing (must match how users access CVAT)
5CVAT_HOST={{ cvat_domain }}
6
7{% if cvat_https_enabled %}
8ACME_EMAIL={{ cvat_acme_email }}
9{% endif %}
10
11# External DB variables are picked up by the external_db overlay
12{% if cvat_external_db_enabled %}
13CVAT_POSTGRES_HOST={{ cvat_db_host }}
14CVAT_POSTGRES_PORT={{ cvat_db_port }}
15CVAT_POSTGRES_DBNAME={{ cvat_db_name }}
16CVAT_POSTGRES_USER={{ cvat_db_user }}
17CVAT_POSTGRES_PASSWORD={{ cvat_db_password }}
18{% endif %}
19
20