Sha256: 4378fdf88effe5fc97f124a8ba9d4cbff5ce232f2c9ee702784b4637a9185d19

Contents?: true

Size: 1.14 KB

Versions: 9

Compression:

Stored size: 1.14 KB

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"
      - "HEADLESS_WINDOW_SIZE=1400,1400"
      - "HEADLESS=true"
      - "PGTZ=America/Los_Angeles"
      - "BUNDLER_VERSION=2.0.1"
    # env_file: ".rbenv-vars"
    depends_on:
      - "postgres"
    volumes:
      - .:/opt/app:delegated
      - '.bash_history.docker:/root/.bash_history'
      - '.pry_history.docker:/root/.pry_history'
      - '.ssh-docker:/root/.ssh'
      - bundle_box:/bundle_box
    tty: true
    stdin_open: true

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

  bundle_box:
    image: busybox
    volumes:
      - /bundle_box

volumes:
  postgresql-data:
  bundle_box:

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
marty-6.1.0 docker-compose.dummy.yml
marty-5.2.0 docker-compose.dummy.yml
marty-5.1.4 docker-compose.dummy.yml
marty-5.1.3 docker-compose.dummy.yml
marty-5.1.2 docker-compose.dummy.yml
marty-5.1.1 docker-compose.dummy.yml
marty-5.1.0 docker-compose.dummy.yml
marty-3.1.0 docker-compose.dummy.yml
marty-3.0.1 docker-compose.dummy.yml