Sha256: d56b10e480feb412f0907def153c503be9eeba24894808dbbebabf74ba9bfd12

Contents?: true

Size: 679 Bytes

Versions: 1

Compression:

Stored size: 679 Bytes

Contents

version: "3"
services:
  yard-docs:
    build: .
    command: bundle exec yard server --reload
    ports:
      - 9999:8808
    volumes:
      - .:/src
      - bundle:/bundle

  test:
    build: .
    command: bundle exec guard --no-bundler-warning --no-interactions
    volumes:
      - .:/src
      - bundle:/bundle
    environment:
      - TEST_DB_SRC=postgres://postgres@db/pg_conduit_src_test
      - TEST_DB_DEST=postgres://postgres@db/pg_conduit_dest_test
      - TEST_DB_HOST=postgres://postgres@db/
    links:
      - db

  db:
    image: postgres:9.6.6
    ports:
      - 5499:5432
    volumes:
      - database:/var/lib/postgresql/data

volumes:
  bundle:
  database:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pg_conduit-0.1.0 docker-compose.yml