Sha256: 3a9cca26fbcdf97280b8fe6a9c60b8edad976cb35c21c36120c61d42797a7e54

Contents?: true

Size: 614 Bytes

Versions: 2

Compression:

Stored size: 614 Bytes

Contents

services:
  migration:
    build:
      context: .
      args:
        RUBY_VERSION: ${RUBY_VERSION}
        RAILS_VERSION: ${RAILS_VERSION}
    container_name: migration
    volumes:
      - bundle:/usr/local/bundle
      - .:/migration
    networks:
      - migration-default
  migration-endtoend:
    build:
      context: ./test/endtoend
      args:
        VITESS_VERSION: ${VITESS_VERSION}
    container_name: migration-endtoend
    privileged: true
    volumes:
      - .:/endtoend
      - tmp:/endtoend/tmp
    networks:
      - migration-default

networks:
  migration-default:

volumes:
  bundle:
  tmp:

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vitess-activerecord-migration-0.2.0 compose.yml
vitess-activerecord-migration-0.1.0 compose.yml