Sha256: 1190151b40fafef4411ccfd224fbe7367f2f7ed0646e0938d0659370d6110aa1

Contents?: true

Size: 1.21 KB

Versions: 9

Compression:

Stored size: 1.21 KB

Contents

services:
  app:
    build:
      context: .
      dockerfile: .docker/app/Dockerfile
      args:
        - ALPINE_RUBY_VERSION
    # mounting . is causing seg-fault on macosx
    #volumes:
    #- .:/app
    depends_on:
      - solr
    ports:
      - "3000:3000"
    environment:
      - SOLR_URL # Set via environment variable or use default defined in .env file
      - RAILS_VERSION # Set via environment variable or use default defined in .env file
      - VIEW_COMPONENT_VERSION # Set via environment variable or use default defined in .env file
      - SOLR_ENV=docker-compose
      - ENGINE_CART_RAILS_OPTIONS=--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test --skip-solr

  solr:
    environment:
      - SOLR_PORT # Set via environment variable or use default defined in .env file
      - SOLR_VERSION # Set via environment variable or use default defined in .env file
    image: "solr:${SOLR_VERSION}"
    volumes:
      - $PWD/lib/generators/blacklight/templates/solr/conf:/opt/solr/conf
    ports:
      - "${SOLR_PORT}:8983"
    entrypoint:
      - docker-entrypoint.sh
      - solr-precreate
      - blacklight-core
      - /opt/solr/conf
      - "-Xms256m"
      - "-Xmx512m"

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
blacklight-8.8.0 compose.yaml
blacklight-8.7.0 compose.yaml
blacklight-8.6.1 compose.yaml
blacklight-7.40.0 docker-compose.yml
blacklight-8.6.0 compose.yaml
blacklight-8.5.1 compose.yaml
blacklight-8.5.0 compose.yaml
blacklight-7.39.0 docker-compose.yml
blacklight-8.4.0 compose.yaml