File: docker-compose.yml

package info (click to toggle)
ruby-otr-activerecord 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: ruby: 561; sh: 133; makefile: 6
file content (39 lines) | stat: -rw-r--r-- 727 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
38
39
---
services:
  ruby-3.3:
    build:
      context: ./
      dockerfile: ./compose/Dockerfile.ruby-3.3
    volumes:
      - ./:/srv
      - ruby-3.3-gems:/usr/local/bundle

  ruby-3.2:
    build:
      context: ./
      dockerfile: ./compose/Dockerfile.ruby-3.2
    volumes:
      - ./:/srv
      - ruby-3.2-gems:/usr/local/bundle

  ruby-3.1:
    build:
      context: ./
      dockerfile: ./compose/Dockerfile.ruby-3.1
    volumes:
      - ./:/srv
      - ruby-3.1-gems:/usr/local/bundle

  ruby-3.0:
    build:
      context: ./
      dockerfile: ./compose/Dockerfile.ruby-3.0
    volumes:
      - ./:/srv
      - ruby-3.0-gems:/usr/local/bundle

volumes:
  ruby-3.3-gems:
  ruby-3.2-gems:
  ruby-3.1-gems:
  ruby-3.0-gems: