Sha256: 5ee8285e596269608e9c1cb5a913c6d240b50d9dca6ac9a901275f984e310499

Contents?: true

Size: 477 Bytes

Versions: 1

Compression:

Stored size: 477 Bytes

Contents

version: '3.4'

services:
  app:
    image: ruby:2.5.1
    environment:
      - BUNDLE_PATH=/bundle
      - BUNDLE_CONFIG=/app/.bundle/config

      - DB_HOST=db
      - DB_NAME=logux_rack
      - DB_USERNAME=postgres
    command: bash
    working_dir: /app
    volumes:
      - .:/app:cached
      - bundler_data:/bundle
    tmpfs:
      - /tmp
    depends_on:
      - db

  db:
    image: postgres:10
    environment:
      - POSTGRES_DB=logux_rack

volumes:
  bundler_data:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
logux-rack-0.1.0 docker-compose.yml