Files
Zerto_Exporter/docker-compose.yml
T
justin ad64df1c25 switched to docker env variables
Switched hard coded variables to ones that can be set in the docker-compose file.
2022-05-06 17:48:22 -04:00

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"