File: docker-compose.yml

package info (click to toggle)
ruby-rotp 6.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 288 kB
  • sloc: ruby: 1,020; makefile: 16
file content (37 lines) | stat: -rw-r--r-- 795 bytes parent folder | download
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
version: "3.8"
services:
  ruby_2_3:
    build:
      context: .
      dockerfile: Dockerfile-2.3
    volumes:
      - "./lib:/usr/src/app/lib"
      - "./spec:/usr/src/app/spec"
  ruby_2_5:
    build:
      context: .
      dockerfile: Dockerfile-2.5
    volumes:
      - "./lib:/usr/src/app/lib"
      - "./spec:/usr/src/app/spec"
  ruby_2_6:
    build:
      context: .
      dockerfile: Dockerfile-2.6
    volumes:
      - "./lib:/usr/src/app/lib"
      - "./spec:/usr/src/app/spec"
  ruby_2_7:
    build:
      context: .
      dockerfile: Dockerfile-2.7
    volumes:
      - "./lib:/usr/src/app/lib"
      - "./spec:/usr/src/app/spec"
  ruby_3_0:
    build:
      context: .
      dockerfile: Dockerfile-3.0
    volumes:
      - "./lib:/usr/src/app/lib"
      - "./spec:/usr/src/app/spec"