mirror of
https://github.com/valitydev/hellgate.git
synced 2024-11-06 10:55:22 +00:00
b78c1af62d
* MSPF-73: use build_utils - align with the latest & greatest WoWs
24 lines
484 B
Bash
Executable File
24 lines
484 B
Bash
Executable File
#!/bin/bash
|
|
cat <<EOF
|
|
version: '2'
|
|
services:
|
|
${SERVICE_NAME}:
|
|
image: ${BUILD_IMAGE}
|
|
volumes:
|
|
- .:/code
|
|
working_dir: /code
|
|
command: /sbin/init
|
|
depends_on:
|
|
- machinegun
|
|
machinegun:
|
|
image: dr.rbkmoney.com/rbkmoney/mg_prototype:87bef0b
|
|
command: /opt/mgun/bin/mgun foreground
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
driver_opts:
|
|
com.docker.network.enable_ipv6: "true"
|
|
com.docker.network.bridge.enable_ip_masquerade: "false"
|
|
EOF
|
|
|