forked from TrueCloudLab/frostfs-node
70bb96a3d5
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
31 lines
721 B
YAML
31 lines
721 B
YAML
---
|
|
|
|
version: "2.4"
|
|
services:
|
|
storage01:
|
|
image: nspccdev/neofs-storage-testnet:0.23.0
|
|
container_name: neofs-testnet
|
|
env_file: node_config.env
|
|
network_mode: host
|
|
restart: always
|
|
volumes:
|
|
- neofs_storage:/storage
|
|
- <NEOFS_NODE_KEY>:/node.key
|
|
stop_signal: SIGINT
|
|
|
|
vmagent:
|
|
image: victoriametrics/vmagent:v1.61.0
|
|
container_name: vmagent
|
|
depends_on:
|
|
- storage01
|
|
env_file: node_config.env
|
|
command:
|
|
- '-promscrape.config=/configs/prometheus.yml'
|
|
- '-remoteWrite.url=https://collector.fs.neo.org:8429/api/v1/write'
|
|
network_mode: host
|
|
restart: always
|
|
volumes:
|
|
- ./prometheus.yml:/configs/prometheus.yml
|
|
|
|
volumes:
|
|
neofs_storage:
|