Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Add basic docker-compose.yaml for Jupyter notebooks #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions infrastructure/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: '3'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it would make more sense in the jupyter directory.


services:
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- '16686:16686'

hotrod:
image: jaegertracing/example-hotrod:latest
ports:
- '8080:8080'
environment:
- JAEGER_ENDPOINT=http://jaeger:14268/api/traces
links:
- 'jaeger'

jaeger-analytics-java:
image: quay.io/jaegertracing/jaeger-analytics-java:latest
ports:
- '8888:8888'
- '4041:4040'
- '9001:9001'
environment:
- JUPYTER_ENABLE_LAB=yes
links:
- 'jaeger'