Sha256: 407190cc897cfc8f749964bd914b23d80435852444ff149792dae878623a6d22

Contents?: true

Size: 1008 Bytes

Versions: 1

Compression:

Stored size: 1008 Bytes

Contents

version: '3'

services:

  web:
    build: .
    depends_on:
      - database
      - webpack_dev_server
      - redis
    # entrypoint: ./docker-entrypoint.sh
    command: ["bin/rails", "s", "-b", "0.0.0.0"]

    ports:
      - "3000:3000"
      - "4000:4000"
    volumes:
      - .:/usr/src/app
      - gem_cache:/gems
    env_file:
      - .env/development/web
      - .env/development/database
    environment:
      - WEBPACKER_DEV_SERVER_HOST=webpack_dev_server

  webpack_dev_server:
    build: .
    command: ./bin/webpack-dev-server
    ports:
      - 3035:3035
    volumes:
      - .:/usr/src/app
      - gem_cache:/gems
    env_file:
      - .env/development/database
      - .env/development/web
    environment:
      - WEBPACKER_DEV_SERVER_HOST=0.0.0.0

  redis:
    image: redis

<%= config[:database_service] %>

  system_tests:
    image: selenium/standalone-chrome-debug
    logging:
      driver: none
    ports:
      - "35729:35729"
      - "5900:5900"

volumes:
  db_data:
  gem_cache:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
roro-0.3.5 lib/roro/cli/templates/greenfield/docker-compose.yml.tt