Sha256: 8006d2e67ab8447c0464580e3b7b87a9f0cee254f004a4236aca60827825a8cc

Contents?: true

Size: 775 Bytes

Versions: 1

Compression:

Stored size: 775 Bytes

Contents

version: "3.0"
services:
  ruby-2-6: &latest
    build: &build
      context: .
      dockerfile: Dockerfile.development
      args:
        RUBY_VERSION: 2.6.0
    volumes:
      - vendor:/vendor
      - home:/home/ruby
  ruby-2-5:
    <<: *latest
    build:
      <<: *build
      args:
        RUBY_VERSION: 2.5.3
  ruby-2-4:
    <<: *latest
    build:
      <<: *build
      args:
        RUBY_VERSION: 2.4.5
  ruby-2-3:
    <<: *latest
    build:
      <<: *build
      args:
        RUBY_VERSION: 2.3.8
  ruby-2-2:
    <<: *latest
    build:
      <<: *build
      args:
        RUBY_VERSION: 2.2.10
  node:
    build:
      context: .
      dockerfile: Dockerfile-node.development
    volumes:
      - vendor:/vendor
      - home:/home/node
volumes:
  vendor:
  home:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
language_server-protocol-3.14.0.0 docker-compose.yml