1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
version: '3.0'
services:
ruby-2.0:
image: ruby:2.0
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-2.1:
image: ruby:2.1
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-2.2:
image: ruby:2.2
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-2.3:
image: ruby:2.3
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-2.4:
image: ruby:2.4
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-2.5:
image: ruby:2.5
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-2.6:
image: ruby:2.6
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-2.7:
image: ruby:2.7
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
ruby-3.0:
image: ruby:3.0
volumes:
- .:/app
command:
bash -c 'cd /app && bundle install && bundle exec rake test'
|