Sha256: 87ab46d6b994d4085166a6c201634ad41f782de53ced89e22a9eb92149283447

Contents?: true

Size: 699 Bytes

Versions: 1

Compression:

Stored size: 699 Bytes

Contents

version: '3'

services:
  ruby2:
    build:
      context: .
      args:
        - RUBY_VERSION=2.7.0
    volumes:
      - bundle_cache:/bundle
      - .:/app
    environment:
      - BUNDLER_VERSION=2.2.33
      - BUNDLE_JOBS=5
      - BUNDLE_PATH=/bundle
      - BUNDLE_BIN=/bundle/bin
      - GEM_HOME=/bundle
      - DOCKER_CONTAINER=1
    command:
      - docker/start.sh
  ruby3:
    build: .
    volumes:
      - bundle_cache:/bundle
      - .:/app
    environment:
      - BUNDLER_VERSION=2.4.0
      - BUNDLE_JOBS=5
      - BUNDLE_PATH=/bundle
      - BUNDLE_BIN=/bundle/bin
      - GEM_HOME=/bundle
      - DOCKER_CONTAINER=1
    command:
      - docker/start.sh

volumes:
  bundle_cache:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phi_attrs-0.3.0 docker-compose.yml