├── .gitignore ├── README.md ├── elixir ├── .gitignore ├── Dockerfile ├── README.md ├── config │ └── config.exs ├── hello.exs ├── hello.payload.json ├── lib │ └── iron.ex ├── mix.exs └── test │ ├── iron_test.exs │ └── test_helper.exs ├── gcc ├── .gitignore ├── Dockerfile ├── README.md ├── hello.C └── hello.payload.json ├── go ├── .gitignore ├── Dockerfile ├── README.md ├── hello.config.yml ├── hello.go └── hello.payload.json ├── java ├── .gitignore ├── Dockerfile ├── Hello.java ├── PayloadData.java ├── README.md ├── enqueue.java ├── gson-2.2.4.jar ├── hello.config.yml ├── hello.payload.json ├── ironworker-1.0.10.jar ├── json-java.jar └── manifest.txt ├── kotlin ├── .gitignore ├── Dockerfile ├── Hello.kt ├── PayloadData.kt ├── README.md ├── gson-2.2.4.jar ├── hello.payload.json ├── ironworker-1.0.10.jar ├── json-java.jar └── kotlin-runtime-1.0.5.jar ├── mono ├── Dockerfile ├── README.md ├── hello.cs └── hello.payload.json ├── node ├── .gitignore ├── Dockerfile ├── README.md ├── hello.js ├── hello.payload.json └── package.json ├── php ├── .gitignore ├── Dockerfile ├── README.md ├── composer.json ├── composer.lock ├── hello.payload.json └── hello.php ├── python ├── .gitignore ├── Dockerfile ├── README.md ├── enqueue.py ├── hello.payload.json ├── hello.py ├── helper.pyc └── requirements.txt ├── ruby ├── .gitignore ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── enqueue.rb ├── hello.payload.json └── hello.rb ├── run_all.sh └── scala ├── .gitignore ├── Dockerfile ├── Hello.scala ├── PayloadData.scala ├── README.md ├── gson-2.2.4.jar ├── hello.payload.json ├── ironworker.jar └── json-java.jar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/README.md -------------------------------------------------------------------------------- /elixir/.gitignore: -------------------------------------------------------------------------------- 1 | deps/ 2 | mix.lock 3 | _build/ 4 | hello-elixir.zip 5 | -------------------------------------------------------------------------------- /elixir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/elixir/Dockerfile -------------------------------------------------------------------------------- /elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/elixir/README.md -------------------------------------------------------------------------------- /elixir/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/elixir/config/config.exs -------------------------------------------------------------------------------- /elixir/hello.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/elixir/hello.exs -------------------------------------------------------------------------------- /elixir/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Johnny" 3 | } 4 | -------------------------------------------------------------------------------- /elixir/lib/iron.ex: -------------------------------------------------------------------------------- 1 | defmodule Iron do 2 | end 3 | -------------------------------------------------------------------------------- /elixir/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/elixir/mix.exs -------------------------------------------------------------------------------- /elixir/test/iron_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/elixir/test/iron_test.exs -------------------------------------------------------------------------------- /elixir/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /gcc/.gitignore: -------------------------------------------------------------------------------- 1 | /hello 2 | -------------------------------------------------------------------------------- /gcc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/gcc/Dockerfile -------------------------------------------------------------------------------- /gcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/gcc/README.md -------------------------------------------------------------------------------- /gcc/hello.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/gcc/hello.C -------------------------------------------------------------------------------- /gcc/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Johnny" 3 | } 4 | -------------------------------------------------------------------------------- /go/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /hello 3 | /go 4 | /app 5 | /__uberscript__ 6 | -------------------------------------------------------------------------------- /go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/go/Dockerfile -------------------------------------------------------------------------------- /go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/go/README.md -------------------------------------------------------------------------------- /go/hello.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/go/hello.config.yml -------------------------------------------------------------------------------- /go/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/go/hello.go -------------------------------------------------------------------------------- /go/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Johnny" 3 | } 4 | -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/.gitignore -------------------------------------------------------------------------------- /java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/Dockerfile -------------------------------------------------------------------------------- /java/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/Hello.java -------------------------------------------------------------------------------- /java/PayloadData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/PayloadData.java -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/README.md -------------------------------------------------------------------------------- /java/enqueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/enqueue.java -------------------------------------------------------------------------------- /java/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/gson-2.2.4.jar -------------------------------------------------------------------------------- /java/hello.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/hello.config.yml -------------------------------------------------------------------------------- /java/hello.payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/hello.payload.json -------------------------------------------------------------------------------- /java/ironworker-1.0.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/ironworker-1.0.10.jar -------------------------------------------------------------------------------- /java/json-java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/json-java.jar -------------------------------------------------------------------------------- /java/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/java/manifest.txt -------------------------------------------------------------------------------- /kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | META-INF/ -------------------------------------------------------------------------------- /kotlin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/Dockerfile -------------------------------------------------------------------------------- /kotlin/Hello.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/Hello.kt -------------------------------------------------------------------------------- /kotlin/PayloadData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/PayloadData.kt -------------------------------------------------------------------------------- /kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/README.md -------------------------------------------------------------------------------- /kotlin/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/gson-2.2.4.jar -------------------------------------------------------------------------------- /kotlin/hello.payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/hello.payload.json -------------------------------------------------------------------------------- /kotlin/ironworker-1.0.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/ironworker-1.0.10.jar -------------------------------------------------------------------------------- /kotlin/json-java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/json-java.jar -------------------------------------------------------------------------------- /kotlin/kotlin-runtime-1.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/kotlin/kotlin-runtime-1.0.5.jar -------------------------------------------------------------------------------- /mono/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/mono/Dockerfile -------------------------------------------------------------------------------- /mono/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/mono/README.md -------------------------------------------------------------------------------- /mono/hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/mono/hello.cs -------------------------------------------------------------------------------- /mono/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "query_string": "meerkats" 3 | } 4 | -------------------------------------------------------------------------------- /node/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/node/Dockerfile -------------------------------------------------------------------------------- /node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/node/README.md -------------------------------------------------------------------------------- /node/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/node/hello.js -------------------------------------------------------------------------------- /node/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Johnny" 3 | } 4 | -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/node/package.json -------------------------------------------------------------------------------- /php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/php/Dockerfile -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/php/README.md -------------------------------------------------------------------------------- /php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/php/composer.json -------------------------------------------------------------------------------- /php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/php/composer.lock -------------------------------------------------------------------------------- /php/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Johnny" 3 | } 4 | -------------------------------------------------------------------------------- /php/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/php/hello.php -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- 1 | packages/ 2 | -------------------------------------------------------------------------------- /python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/python/Dockerfile -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/python/README.md -------------------------------------------------------------------------------- /python/enqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/python/enqueue.py -------------------------------------------------------------------------------- /python/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Johnny" 3 | } 4 | -------------------------------------------------------------------------------- /python/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/python/hello.py -------------------------------------------------------------------------------- /python/helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/python/helper.pyc -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/ruby/.gitignore -------------------------------------------------------------------------------- /ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/ruby/Dockerfile -------------------------------------------------------------------------------- /ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/ruby/Gemfile -------------------------------------------------------------------------------- /ruby/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/ruby/Gemfile.lock -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/enqueue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/ruby/enqueue.rb -------------------------------------------------------------------------------- /ruby/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Johnny" 3 | } 4 | -------------------------------------------------------------------------------- /ruby/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/ruby/hello.rb -------------------------------------------------------------------------------- /run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/run_all.sh -------------------------------------------------------------------------------- /scala/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | -------------------------------------------------------------------------------- /scala/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/scala/Dockerfile -------------------------------------------------------------------------------- /scala/Hello.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/scala/Hello.scala -------------------------------------------------------------------------------- /scala/PayloadData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/scala/PayloadData.scala -------------------------------------------------------------------------------- /scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/scala/README.md -------------------------------------------------------------------------------- /scala/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/scala/gson-2.2.4.jar -------------------------------------------------------------------------------- /scala/hello.payload.json: -------------------------------------------------------------------------------- 1 | { 2 | "query_string": "meerkats" 3 | } 4 | -------------------------------------------------------------------------------- /scala/ironworker.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/scala/ironworker.jar -------------------------------------------------------------------------------- /scala/json-java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-io/dockerworker/HEAD/scala/json-java.jar --------------------------------------------------------------------------------