Sha256: 03818cdd2a13d58134c29c7fc63909991f5119129e9917d46674ecfe74940970

Contents?: true

Size: 597 Bytes

Versions: 1

Compression:

Stored size: 597 Bytes

Contents

version: '3'
services:
  sonezaki_redis:
    image: redis:6.2.4
    container_name: sonezaki_redis

  base: &base
    image: sonezaki
    working_dir: /home/app/app
    volumes:
      - .:/home/app/app
    links:
      - sonezaki_redis:redis

  base_build:
    <<: *base
    build: .
    command: echo done

  sonezaki:
    <<: *base
    container_name: sonezaki
    depends_on: [base_build]
    command: /bin/bash -c 'rspec'
    env_file: .env

  test_all:
    <<: *base
    depends_on: [base_build]
    command: /bin/bash -c 'rspec && yard && rake yardstick_measure && rake verify_measurements'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sonezaki-0.0.1 docker-compose.yml