Untitled

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

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

  solr:
    type: compose
    services:
      solr:
        image: solr:9  # Specify the Solr 9 Docker image
        ports:
          - "8983:8983"
        volumes:
          - ./solr-conf/drupal:/opt/solr/server/solr/mycores/drupal/conf  # Mount the configuration directory
        environment:
          - SOLR_CORE=drupal
        networks:
          - lando

tooling:
  solr:
    service: solr
    cmd: solr

networks:
  lando:
    driver: bridge
Leave a Comment