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:
|