You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
634 B
YAML
32 lines
634 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
webhook_receiver:
|
|
image: python:3.9-slim
|
|
restart: always
|
|
command: python3 /tmp/server.py
|
|
env_file:
|
|
- ./tests/python/webhook_receiver/.env
|
|
expose:
|
|
- ${SERVER_PORT}
|
|
volumes:
|
|
- ./tests/python/webhook_receiver:/tmp
|
|
networks:
|
|
cvat:
|
|
aliases:
|
|
- webhooks
|
|
|
|
git_server:
|
|
image: alpine/git
|
|
restart: always
|
|
depends_on:
|
|
- cvat_server
|
|
entrypoint: /mnt/scripts/entrypoint.sh
|
|
volumes:
|
|
- ./tests/git_server/:/mnt/scripts:ro
|
|
- cvat_keys:/mnt/keys:ro
|
|
networks:
|
|
cvat:
|
|
aliases:
|
|
- gitserver
|