You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version: '2'# this is for testing onlyservices:
logstash-patterns-core:
# https://hub.docker.com/_/jruby/image: jruby:9-onbuildcommand: ["bundle", "exec", "rspec"]
but you could do the same in a single docker line
docker run -ti --rm jruby:9-onbuild bundle exec rspec
the jruby:9-onbuild onbuild container uses the current directory of where its built to look for a Gemfile.lock
The text was updated successfully, but these errors were encountered:
This is just a bit of an FYI:
When testing i used a docker container:
docker-compose.yml (in root directory)
but you could do the same in a single docker line
docker run -ti --rm jruby:9-onbuild bundle exec rspec
the
jruby:9-onbuild
onbuild container uses the current directory of where its built to look for aGemfile.lock
The text was updated successfully, but these errors were encountered: