Sha256: e007aa2b003af586195dc66a2741116bb072a855d70de45ca5be456918af8fe0

Contents?: true

Size: 498 Bytes

Versions: 3

Compression:

Stored size: 498 Bytes

Contents

version: "3"
services:
  app:    
    image: brandnewbox/bnb-ruby:2.6-postgresql
    command: bundle exec puma -C config/puma.rb
    env_file: .docker-development-vars
    volumes:
      - .:/app:cached
      - bundle_cache:/usr/local/bundle
    ports:
      - "3000:3000"
  postgresql:
    image: postgres:11-alpine
    volumes:
      - my_dbdata:/var/lib/postgresql/data
    environment:
      - POSTGRES_HOST_AUTH_METHOD=trust
    ports:
      - "5432:5432"
volumes:
  bundle_cache:
  my_dbdata:

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bnb_blazer-0.4.0 docker-compose.yml
bnb_blazer-0.3.0 docker-compose.yml
bnb_blazer-0.2.0 docker-compose.yml