2020-11-27 14:02:49 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
version: "2.4"
|
|
|
|
services:
|
|
|
|
http_gate:
|
|
|
|
image: ${HTTP_GW_IMAGE}:${HTTP_GW_VERSION}
|
|
|
|
domainname: ${LOCAL_DOMAIN}
|
|
|
|
hostname: http_gate
|
|
|
|
container_name: http_gate
|
|
|
|
restart: on-failure
|
|
|
|
networks:
|
|
|
|
http_gate_int:
|
|
|
|
internet:
|
|
|
|
ipv4_address: ${IPV4_PREFIX}.81
|
|
|
|
volumes:
|
2021-07-19 12:23:45 +00:00
|
|
|
- ./wallet.json:/wallet.json
|
2020-11-27 14:02:49 +00:00
|
|
|
- ./../../vendor/hosts:/etc/hosts
|
2022-11-24 18:12:50 +00:00
|
|
|
- ./cfg:/etc/frostfs/http
|
2020-11-27 14:02:49 +00:00
|
|
|
stop_signal: SIGKILL
|
2022-04-07 12:33:53 +00:00
|
|
|
env_file: [ ".env", ".http.env", ".int_test.env" ]
|
2022-11-24 18:12:50 +00:00
|
|
|
command: [ "frostfs-http-gw", "--config", "/etc/frostfs/http/config.yml" ]
|
2020-11-27 14:02:49 +00:00
|
|
|
environment:
|
2023-01-11 06:48:22 +00:00
|
|
|
- HTTP_GW_RPC_ENDPOINT=http://morph-chain.${LOCAL_DOMAIN}:30333
|
2023-05-30 12:49:43 +00:00
|
|
|
- HTTP_GW_TREE_SERVICE=s01.${LOCAL_DOMAIN}:8080
|
2020-11-27 14:02:49 +00:00
|
|
|
- HTTP_GW_PEERS_0_ADDRESS=s01.${LOCAL_DOMAIN}:8080
|
|
|
|
- HTTP_GW_PEERS_0_WEIGHT=0.2
|
|
|
|
- HTTP_GW_PEERS_1_ADDRESS=s02.${LOCAL_DOMAIN}:8080
|
|
|
|
- HTTP_GW_PEERS_1_WEIGHT=0.2
|
|
|
|
- HTTP_GW_PEERS_2_ADDRESS=s03.${LOCAL_DOMAIN}:8080
|
|
|
|
- HTTP_GW_PEERS_2_WEIGHT=0.2
|
|
|
|
- HTTP_GW_PEERS_3_ADDRESS=s04.${LOCAL_DOMAIN}:8080
|
|
|
|
- HTTP_GW_PEERS_3_WEIGHT=0.2
|
|
|
|
|
|
|
|
networks:
|
|
|
|
http_gate_int:
|
|
|
|
internet:
|
2021-10-14 11:04:04 +00:00
|
|
|
external: true
|
|
|
|
name: basenet_internet
|