dominant/compose.yaml

34 lines
796 B
YAML
Raw Normal View History

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:
2023-10-24 10:28:17 +00:00
machinegun:
condition: service_healthy
ports:
- "8022"
command: /sbin/init
machinegun:
2023-10-24 10:28:17 +00:00
image: ghcr.io/valitydev/machinegun:sha-5c0db56
command: /opt/machinegun/bin/machinegun foreground
volumes:
- ./test/machinegun/config.yaml:/opt/machinegun/etc/config.yaml
- ./test/machinegun/cookie:/opt/machinegun/etc/cookie
2023-10-24 10:28:17 +00:00
healthcheck:
test: "/opt/machinegun/bin/machinegun ping"
interval: 10s
timeout: 5s
retries: 10