frostfs-dev-env/services/http_gate/docker-compose.yml
Evgenii Stratonikov 47b4917e7b
All checks were successful
DCO action / DCO (pull_request) Successful in 5m24s
[#65] services: Fix docker-compose warnings
There were multiple warning like this one.
```
WARN[0000] /secret/services/rest_gate/docker-compose.yml: `version` is obsolete
```

According to docker-compose spec, the parameter is indeed purely informative:
https://github.com/compose-spec/compose-spec/blob/master/spec.md#version-and-name-top-level-elements

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-04-04 11:47:33 +03:00

37 lines
1.1 KiB
YAML

---
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:
- ./wallet.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./cfg:/etc/frostfs/http
stop_signal: SIGKILL
env_file: [ ".env", ".http.env", ".int_test.env" ]
command: [ "frostfs-http-gw", "--config", "/etc/frostfs/http/config.yml" ]
environment:
- HTTP_GW_RPC_ENDPOINT=http://morph-chain.${LOCAL_DOMAIN}:30333
- HTTP_GW_TREE_SERVICE=s01.${LOCAL_DOMAIN}:8080
- 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:
external: true
name: basenet_internet