Sha256: 1128fa0d1101554cf0bf7a5e73a2fb5c8364a1515e5b9e96b00a005e16bc7b97

Contents?: true

Size: 1000 Bytes

Versions: 2

Compression:

Stored size: 1000 Bytes

Contents

version: "2"

services:
  app:
    build:
      context: .
      dockerfile: Dockerfile.dummy
    command: bash -c 'cd spec/dummy && rm -f tmp/pids/server.pid && rails s -b 0.0.0.0'
    ports:
      - "3000:3000"
    environment:
      - "PORT=3000"
      - "PATH=/bundle_box/bundle/bin:/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
      - "DEVELOPMENT_DATABASE_URL=postgres://postgres@postgres/marty_dev"
      - "TEST_DATABASE_URL=postgres://postgres@postgres/marty_test"
    # env_file: ".rbenv-vars"
    depends_on:
      - "postgres"
    volumes:
      - .:/opt/app:delegated

      # - '~/.bash_history:/root/.bash_history'
      # - '~/.pry_history:/root/.pry_history'
    volumes_from:
      - bundle_box
    tty: true
    stdin_open: true

  postgres:
    image: "clkao/postgres-plv8:9.6-2.0"
    volumes:
      - postgresql-data:/var/lib/postgresql/data

  bundle_box:
    image: busybox
    volumes:
      - /bundle_box

volumes:
  postgresql-data:

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
marty-2.4.7 docker-compose.dummy.yml
marty-2.4.6 docker-compose.dummy.yml