dockerworker
dockerworker copied to clipboard
The new IronWorker workflow examples. Test locally, then upload and start queuing jobs!
The docker run --rm -v "$(pwd)":/worker -w /worker iron/images:... command will not work in Windows because $(pwd) is a Unix command. To correct this issue, the actual path needs to...
Something like this should work: ``` sh docker run --rm -it -v "$GOPATH":/go -w /go/src/github.com/YOURUSER/YOURREPO -e "GOPATH=/go" iron/go:dev go build ``` User must replace YOURUSER and YOURREPO, but easier than...
Added no bin option to prevent weird error.
> Yes, the main differences : Understand that you need a standalone version of your gems / you need a require_relative of the bundle setup and a require for the...