hellgate/compose.yaml

115 lines
3.1 KiB
YAML
Raw Normal View History

services:
2022-02-09 15:21:50 +00:00
testrunner:
image: $DEV_IMAGE_TAG
build:
dockerfile: Dockerfile.dev
context: .
args:
OTP_VERSION: $OTP_VERSION
THRIFT_VERSION: $THRIFT_VERSION
volumes:
2016-08-12 17:33:39 +00:00
- .:$PWD
2022-02-09 15:21:50 +00:00
hostname: hellgate
depends_on:
2022-02-09 15:21:50 +00:00
# FIXME: Switch all service_started to service_healthy when its possible to debug its problems
machinegun:
condition: service_healthy
2022-02-09 15:21:50 +00:00
dominant:
condition: service_healthy
2022-02-09 15:21:50 +00:00
party-management:
condition: service_healthy
2022-02-09 15:21:50 +00:00
limiter:
condition: service_healthy
2022-02-09 15:21:50 +00:00
shumway:
condition: service_healthy
2022-02-09 15:21:50 +00:00
working_dir: $PWD
command: /sbin/init
dominant:
image: ghcr.io/valitydev/dominant:sha-0b47590
command: /opt/dominant/bin/dominant foreground
depends_on:
machinegun:
condition: service_healthy
2022-02-09 15:21:50 +00:00
healthcheck:
test: "/opt/dominant/bin/dominant ping"
interval: 10s
timeout: 5s
retries: 10
machinegun:
2022-02-09 15:21:50 +00:00
image: docker.io/rbkmoney/machinegun:c05a8c18cd4f7966d70b6ad84cac9429cdfe37ae
command: /opt/machinegun/bin/machinegun foreground
volumes:
- ./test/machinegun/config.yaml:/opt/machinegun/etc/config.yaml
2019-12-16 16:57:26 +00:00
- ./test/machinegun/cookie:/opt/machinegun/etc/cookie
healthcheck:
test: "curl http://localhost:8022/"
interval: 5s
timeout: 1s
retries: 20
limiter:
2022-02-09 15:21:50 +00:00
image: docker.io/rbkmoney/limiter:c7e96068a56da444e78cc7739a902da8e268dc63
command: /opt/limiter/bin/limiter foreground
depends_on:
machinegun:
condition: service_healthy
shumway:
condition: service_healthy
2022-02-09 15:21:50 +00:00
healthcheck:
test: "curl http://localhost:8022/"
interval: 5s
timeout: 1s
retries: 20
shumway:
2022-02-09 15:21:50 +00:00
image: docker.io/rbkmoney/shumway:44eb989065b27be619acd16b12ebdb2288b46c36
2019-08-06 10:24:20 +00:00
restart: unless-stopped
entrypoint:
- java
- -Xmx512m
- -jar
- /opt/shumway/shumway.jar
- --spring.datasource.url=jdbc:postgresql://shumway-db:5432/shumway
- --spring.datasource.username=postgres
- --spring.datasource.password=postgres
- --management.metrics.export.statsd.enabled=false
depends_on:
2022-02-09 15:21:50 +00:00
shumway-db:
condition: service_healthy
healthcheck:
test: "curl http://localhost:8023/actuator/health"
interval: 5s
timeout: 1s
retries: 20
party-management:
image: ghcr.io/valitydev/party-management:sha-e456e24
command: /opt/party-management/bin/party-management foreground
depends_on:
2022-02-09 15:21:50 +00:00
machinegun:
condition: service_healthy
dominant:
condition: service_started
shumway:
condition: service_healthy
healthcheck:
test: "/opt/party-management/bin/party-management ping"
interval: 10s
timeout: 5s
retries: 10
shumway-db:
2022-02-09 15:21:50 +00:00
image: docker.io/library/postgres:9.6
environment:
- POSTGRES_DB=shumway
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- SERVICE_NAME=shumway-db
2022-02-09 15:21:50 +00:00
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5