mirror of
https://github.com/valitydev/dominant.git
synced 2024-11-06 02:25:17 +00:00
0b47590a7d
* TD-129: Add multiplatform build and CI checks * Add qemu setup * Add covertool * Migrate relevant changes from PM
30 lines
695 B
YAML
30 lines
695 B
YAML
version: '3'
|
|
services:
|
|
|
|
testrunner:
|
|
image: $DEV_IMAGE_TAG
|
|
build:
|
|
dockerfile: Dockerfile.dev
|
|
context: .
|
|
args:
|
|
OTP_VERSION: $OTP_VERSION
|
|
THRIFT_VERSION: $THRIFT_VERSION
|
|
volumes:
|
|
- .:$PWD
|
|
hostname: $SERVICE_NAME
|
|
working_dir: $PWD
|
|
depends_on:
|
|
- machinegun
|
|
ports:
|
|
- "8022"
|
|
command: /sbin/init
|
|
|
|
machinegun:
|
|
image: docker.io/rbkmoney/machinegun:c05a8c18cd4f7966d70b6ad84cac9429cdfe37ae
|
|
ports:
|
|
- "8022"
|
|
command: /opt/machinegun/bin/machinegun foreground
|
|
volumes:
|
|
- ./test/machinegun/config.yaml:/opt/machinegun/etc/config.yaml
|
|
- ./test/machinegun/cookie:/opt/machinegun/etc/cookie
|