diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..0fa3526 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3.9" + +services: + custom-exporter-in-python: + build: . + command: python python-node-exporter.py + ports: + - "9999:9999" + volumes: + - "./app:/usr/src/app:rw"