File: docker-compose.yml

package info (click to toggle)
ruby-net-ssh 1%3A7.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,844 kB
  • sloc: ruby: 16,999; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (2)
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
version: '3'

services:
  ruby-3.1:
    build:
      context: .
      args: 
        RUBY_VERSION: 3.1
  ruby-3.0:
    build:
      context: .
      args: 
        RUBY_VERSION: 3.0
  ruby-2.7:
    build:
      context: .
      args: 
        RUBY_VERSION: 2.7
        BUNDLERV: "-v 2.2.28"
  ruby-2.6:
    build:
      context: .
      args: 
        RUBY_VERSION: 2.6
        BUNDLERV: "-v 2.4.22"