mirror of
https://github.com/valitydev/hellgate.git
synced 2024-11-06 10:55:22 +00:00
423b6c7630
* MG-16: Reimplement state processing in line w/ proto changes + remove some quirks * MG-16: Update machinegun endpoints * MG-16: Bump to the newest woody * MG-16: Switch to a fresh machinegun container in test env
26 lines
603 B
Bash
Executable File
26 lines
603 B
Bash
Executable File
#!/bin/bash
|
|
cat <<EOF
|
|
version: '2'
|
|
services:
|
|
${SERVICE_NAME}:
|
|
image: ${BUILD_IMAGE}
|
|
volumes:
|
|
- .:$PWD
|
|
- $HOME/.cache:/home/$UNAME/.cache
|
|
working_dir: $PWD
|
|
command: /sbin/init
|
|
depends_on:
|
|
- machinegun
|
|
machinegun:
|
|
image: dr.rbkmoney.com/rbkmoney/machinegun:cc5985c4b1ea385eba141995c37ebc67093a1fe7
|
|
volumes:
|
|
- ./test/machinegun/sys.config:/opt/machinegun/releases/0.1.0/sys.config
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
driver_opts:
|
|
com.docker.network.enable_ipv6: "true"
|
|
com.docker.network.bridge.enable_ip_masquerade: "false"
|
|
EOF
|
|
|