mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-03 07:53:15 -04:00
ad64df1c25
Switched hard coded variables to ones that can be set in the docker-compose file.
17 lines
367 B
YAML
17 lines
367 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
custom-exporter-in-python:
|
|
build: .
|
|
command: python python-node-exporter.py
|
|
ports:
|
|
- "9999:9999"
|
|
environment:
|
|
- VERIFY_SSL="False"
|
|
- ZVM_HOST="192.168.52.30"
|
|
- ZVM_PORT="443"
|
|
- CLIENT_ID="my-zerto-client"
|
|
- CLIENT_SECRET="secret-key-here"
|
|
volumes:
|
|
- "./app:/usr/src/app:rw"
|