Fix exporter example docker-compose path (#1691)

This commit is contained in:
Sri Aradhyula
2023-02-23 21:35:57 -06:00
committed by GitHub
parent 74a8b902f1
commit a50caf26bc
3 changed files with 5 additions and 5 deletions

View File

@ -6,6 +6,6 @@ WORKDIR /code
COPY . .
RUN pip install -e .
RUN pip install -r ./examples/requirements.txt
RUN pip install -r ./example/requirements.txt
CMD ["python", "./examples/sampleapp.py"]
CMD ["python", "./example/sampleapp.py"]

View File

@ -14,7 +14,7 @@ data
*Users do not need to install Python as the app will be run in the Docker Container*
## Instructions
1. Run `docker-compose up -d` in the the `examples/` directory
1. Run `docker-compose up -d` in the the `example/` directory
The `-d` flag causes all services to run in detached mode and frees up your
terminal session. This also causes no logs to show up. Users can attach themselves to the service's logs manually using `docker logs ${CONTAINER_ID} --follow`
@ -39,4 +39,4 @@ terminal session. This also causes no logs to show up. Users can attach themselv
* Click the refresh button and data should show up on the graph
6. Shutdown the services when finished
* Run `docker-compose down` in the examples directory
* Run `docker-compose down` in the example directory

View File

@ -30,4 +30,4 @@ services:
sample_app:
build:
context: ../
dockerfile: ./examples/Dockerfile
dockerfile: ./example/Dockerfile