Sha256: 28adec93f3788edaa700f1029d706911ae88dfca704a6a1c8f6facd3d84ccb12

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 KB

Contents

services:
  app:
    image: ghcr.io/geobtaa/geoblacklight_admin:main
    ports:
      - "3001:3001"
    links:
      - "solr:solr"
    environment:
      SOLR_URL: "http://solr:8983/solr/blacklight-core"
      RAILS_DEVELOPMENT_HOSTS: ".githubpreview.dev,.preview.app.github.dev,.app.github.dev,.csb.app"
    depends_on:
      - solr
    command: sh start-server.sh
  solr:
    image: solr:9.6.1
    volumes:
      - $PWD/solr/conf:/opt/solr/conf
    ports:
      - 8984:8983
    entrypoint:
      - docker-entrypoint.sh
      - solr-precreate
      - blacklight-core
      - /opt/solr/conf
      - "-Xms256m"
      - "-Xmx512m"
  postgres:
    image: postgres:latest
    env:
      POSTGRES_HOST: 127.0.0.1
      POSTGRES_PORT: 5432
      POSTGRES_DB: geoblacklight_development
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: postgres
    ports:
      - 5432:5432
    # Set health checks to wait until postgres has started
    options:
      --health-cmd pg_isready
      --health-interval 10s
      --health-timeout 5s
      --health-retries 5

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
geoblacklight_admin-0.7.0 lib/generators/geoblacklight_admin/templates/demo-app/compose.yml
geoblacklight_admin-0.6.3 lib/generators/geoblacklight_admin/templates/demo-app/compose.yml
geoblacklight_admin-0.6.2 lib/generators/geoblacklight_admin/templates/demo-app/compose.yml
geoblacklight_admin-0.6.1 lib/generators/geoblacklight_admin/templates/demo-app/compose.yml
geoblacklight_admin-0.6.0 lib/generators/geoblacklight_admin/templates/demo-app/compose.yml