Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 758 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 758 Bytes

Docker Exec Image: s

A Dockerfile describing an container capable of executing s source files.

Build

git clone https://github.com/docker-exec/ruby.git
docker build -t dexec/lang-ruby .

Usage

In a directory containing a script e.g. foo.rb, run:

docker run -t --rm \
    -v $(pwd -P)/foo.rb:/tmp/dexec/build/foo.rb \
    dexec/lang-ruby foo.rb

Passing arguments to the script

Arguments can be passed to the script using any of the following forms:

-a argument
--arg argument
--arg=argument

Each argument passed must be prefixed in this way, e.g.

docker run -t --rm \
    -v $(pwd -P)/foo.rb:/tmp/dexec/build/foo.rb \
    dexec/lang-ruby foo.rb \
    --arg='hello world' \
    --arg=foo \
    --arg=bar