hellgate/compose.yaml

123 lines
3.1 KiB
YAML
Raw Permalink 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:
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_started
bender:
condition: service_healthy
2022-02-09 15:21:50 +00:00
working_dir: $PWD
command: /sbin/init
dominant:
image: ghcr.io/valitydev/dominant:sha-fae8726
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:
image: ghcr.io/valitydev/mg2:sha-436f723
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: "/opt/machinegun/bin/machinegun ping"
interval: 5s
timeout: 1s
retries: 20
bender:
image: ghcr.io/valitydev/bender:sha-a3b227f
command: /opt/bender/bin/bender foreground
depends_on:
machinegun:
condition: service_healthy
healthcheck:
test: "/opt/bender/bin/bender ping"
interval: 10s
timeout: 5s
retries: 10
limiter:
image: ghcr.io/valitydev/limiter:sha-920d6ac
command: /opt/limiter/bin/limiter foreground
depends_on:
machinegun:
condition: service_healthy
shumway:
condition: service_started
2022-02-09 15:21:50 +00:00
healthcheck:
test: "/opt/limiter/bin/limiter ping"
2022-02-09 15:21:50 +00:00
interval: 5s
timeout: 1s
retries: 20
shumway:
image: ghcr.io/valitydev/shumway:sha-658587c
2019-08-06 10:24:20 +00:00
restart: unless-stopped
depends_on:
- shumway-db
ports:
- "8022"
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.endpoint.metrics.enabled=false
- --management.endpoint.prometheus.enabled=false
healthcheck:
disable: true
party-management:
image: ghcr.io/valitydev/party-management:sha-b78d0f5
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_started
healthcheck:
test: "/opt/party-management/bin/party-management ping"
interval: 10s
timeout: 5s
retries: 10
shumway-db:
image: docker.io/library/postgres:13.10
ports:
- "5432"
environment:
- POSTGRES_DB=shumway
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres