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.
cvat/tests/docker-compose.test_servers...

33 lines
649 B
YAML

version: '3.7'
services:
webhook_receiver:
image: python:3.9-slim
restart: always
command: python3 /tmp/server.py
init: true
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