mirror of
https://github.com/valitydev/hellgate.git
synced 2024-11-06 10:55:22 +00:00
3bdc2a01f9
* Use corresponding epic damsel branch * Bump dominant * Migrate to new bank_card payment method representation * Simplify guard clause Co-authored-by: Andrew Mayorov <a.mayorov@rbkmoney.com> * Delete invalid clauses in hg_payment_tool:get_method/1 * Remove marshaling that we don't use anymore * Correctly unmarshal tokenization_method * Revert "Correctly unmarshal tokenization_method" This reverts commit 6f14eefd003e3f80d087db97ca63c4ccc85152d8. * Do not unmarshal tokenization_method because it will never be there * Use old (_deprecated) payment methods * Replace has_cvv with is_cvv_empty * Upgrade damsel * Delete outdated comentaries * Return ordset of payment methods * Upgrade dominant * Upgrade damsel * Add tokenization_method to bank_card_deprecated * Rename function in hg_payment_tool, create function to test if payment method is supported * Simpilfy and rename payment methods matching * Export hg_payment_tool:get_possible_methods/1 * Upgrade damsel * Fix mising old bank card reference * Bump dominant * Fix construct_payment_method * Upgrade deps * Suffix with _derprecated payment methods * Bulk update deps * Mark deprecated pms introduced by merge Co-authored-by: Andrew Mayorov <a.mayorov@rbkmoney.com>
67 lines
1.7 KiB
Bash
Executable File
67 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
cat <<EOF
|
|
version: '2.1'
|
|
services:
|
|
|
|
${SERVICE_NAME}:
|
|
image: ${BUILD_IMAGE}
|
|
volumes:
|
|
- .:$PWD
|
|
- $HOME/.cache:/home/$UNAME/.cache
|
|
working_dir: $PWD
|
|
command: /sbin/init
|
|
depends_on:
|
|
machinegun:
|
|
condition: service_healthy
|
|
shumway:
|
|
condition: service_healthy
|
|
mem_limit: 256M
|
|
|
|
dominant:
|
|
image: dr2.rbkmoney.com/rbkmoney/dominant:6896d15357e87eb3de47d3e1aabcb1444e9c4f90
|
|
command: /opt/dominant/bin/dominant foreground
|
|
depends_on:
|
|
machinegun:
|
|
condition: service_healthy
|
|
|
|
machinegun:
|
|
image: dr2.rbkmoney.com/rbkmoney/machinegun:4986e50e2abcedbf589aaf8cce89c2b420589f04
|
|
command: /opt/machinegun/bin/machinegun foreground
|
|
volumes:
|
|
- ./test/machinegun/config.yaml:/opt/machinegun/etc/config.yaml
|
|
- ./test/machinegun/cookie:/opt/machinegun/etc/cookie
|
|
healthcheck:
|
|
test: "curl http://localhost:8022/"
|
|
interval: 5s
|
|
timeout: 1s
|
|
retries: 20
|
|
|
|
shumway:
|
|
image: dr2.rbkmoney.com/rbkmoney/shumway:d36bcf5eb8b1dbba634594cac11c97ae9c66db9f
|
|
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:
|
|
- shumway-db
|
|
healthcheck:
|
|
test: "curl http://localhost:8022/"
|
|
interval: 5s
|
|
timeout: 1s
|
|
retries: 20
|
|
|
|
shumway-db:
|
|
image: dr2.rbkmoney.com/rbkmoney/postgres:9.6
|
|
environment:
|
|
- POSTGRES_DB=shumway
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
- SERVICE_NAME=shumway-db
|
|
EOF
|