runner

Ansible role that deployes services on my runner machine

1005 BJ2
cvat-docker-compose.override.yml.j2
1005 B45 lines • plaintext
1services:
2  traefik:
3    ports:
4      - "{{ cvat_http_port }}:8080"
5      {% if cvat_traefik_dashboard_enabled %}
6      - "{{ cvat_dashboard_port }}:8090"
7      {% endif %}
8    environment:
9      TRAEFIK_ENTRYPOINTS_web_ADDRESS: ":{{ cvat_http_port }}"
10
11  cvat_server:
12    volumes:
13      - type: bind
14        source: {{ cvat_share_dir }}
15        target: /home/django/share
16        read_only: true
17
18  cvat_worker_import:
19    volumes:
20      - type: bind
21        source: {{ cvat_share_dir }}
22        target: /home/django/share
23        read_only: true
24
25  cvat_worker_export:
26    volumes:
27      - type: bind
28        source: {{ cvat_share_dir }}
29        target: /home/django/share
30        read_only: true
31
32  cvat_worker_annotation:
33    volumes:
34      - type: bind
35        source: {{ cvat_share_dir }}
36        target: /home/django/share
37        read_only: true
38
39  cvat_worker_chunks:
40    volumes:
41      - type: bind
42        source: {{ cvat_share_dir }}
43        target: /home/django/share
44        read_only: true
45