Untitled

mail@pastecode.io avatar
unknown
plain_text
21 days ago
550 B
2
Indexable
Never
name: my-drupal-app
recipe: drupal10
config:
  webroot: web

services:
  appserver:
    type: php:8.1  # Or your desired PHP version

  solr:
    type: compose
    compose:
      version: '3'
      services:
        solr:
          image: solr:9  # Specify Solr 9 Docker image
          ports:
            - "8983:8983"
          volumes:
            - ./solr-conf/drupal:/opt/solr/server/solr/mycores/drupal/conf  # Adjust this path if necessary
          environment:
            - SOLR_CORE=drupal

tooling:
  solr:
    service: solr
    cmd: solr
Leave a Comment