Skip to content

Commit

Permalink
Add standalone Dockerfile that runs agent, collector, and query servi…
Browse files Browse the repository at this point in the history
…ce (with no UI)
  • Loading branch information
badiib committed Mar 29, 2017
1 parent 00435d3 commit f783410
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cmd/standalone/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM golang:1.7

ADD . /go/src/github.com/uber/jaeger

ENTRYPOINT go run /go/src/github.com/uber/jaeger/cmd/standalone/main.go --span-storage.type=memory

EXPOSE 5775 6831 6832 14267 16686

#example build command from github.com/uber/jaeger directory: docker build -f cmd/standalone/Dockerfile -t standalone .
#example docker run command: docker run --publish 5755:5775 --publish 6831:6831 --publish 6832:6832 --publish 14267:14267 --publish 16686:16686 --name standalone --rm standalone

0 comments on commit f783410

Please sign in to comment.