Skip to content

Commit bd3ef40

Browse files
committed
docker configured for removing jaeger
1 parent b6b5ee0 commit bd3ef40

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ COPY main.py src
1010
WORKDIR src
1111
RUN pip install -r requirements.txt
1212

13-
EXPOSE 8081
14-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8081"]
13+
EXPOSE 8080
14+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ This architecture;
3030
There are ready implementations;
3131
* Redis cache
3232
* Swagger (http://0.0.0.0:8080)
33-
* Opentracing via Jaeger (http://0.0.0.0:16686/)
3433

3534

3635
# How to add the new use case?

docker-compose.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,13 @@ services:
1313
- .env
1414
depends_on:
1515
- redis
16-
- jaeger
1716
command: uvicorn main:app --host 0.0.0.0 --port 8080 --reload
1817
environment:
1918
REDIS_HOST: redis
20-
JAEGER_HOST: jaeger
2119
redis:
2220
restart: always
2321
image: redis:5.0.7
2422
ports:
2523
- "6379:6379"
2624
volumes:
2725
- .data/db:/data
28-
jaeger:
29-
image: jaegertracing/all-in-one:latest
30-
ports:
31-
- "5775:5775/udp"
32-
- "16686:16686"

0 commit comments

Comments
 (0)