Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.41 KB

README.md

File metadata and controls

32 lines (21 loc) · 1.41 KB

Thrift Docker Image

A Docker image that includes Thrift compiler and dependencies to generate types from Jaeger's Thrift data model.

This is repository is fork of ahawkins/docker-thrift that does not seem to be actively maintained - see ahawkins/docker-thrift/pull/22.

The new versions, starting with 0.13 are published as jaegertracing/thrift. The older versions are available from the official thrift organization e.g. docker pull thrift:0.9.2.

The Apache Thrift software framework, for scalable cross-language services development, combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages.

Read more about Thrift.

How To Use This Image

This is image is intended to run as an executable. Files are provided by mounting a directory. Here's an example of compiling service.thrift to golang.

docker run -v "$(pwd):/data" jaegertracing/thrift thrift --gen go /data/service.thrift

Language Specific Installations

Thrift generates code for many lanuages. Some languages have additional things to install besides the thrift compiler. They are listed below:

  • Go - go fmt from go 1.4