This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace App\Command; | |
| use Prooph\Bundle\EventStore\Projection\ReadModelProjection; | |
| use Prooph\EventStore\Projection\ProjectionManager; | |
| use Prooph\EventStore\Projection\ReadModel; | |
| use Prooph\EventStore\Projection\ReadModelProjector; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.7" | |
| services: | |
| drupal: | |
| depends_on: | |
| - db | |
| build: ./app | |
| restart: unless-stopped | |
| volumes: | |
| - code:/app # mount the mutagen volume | |
| environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:7.4-apache | |
| # persistent dependencies | |
| RUN set -eux; \ | |
| apt-get update; \ | |
| apt-get install -y --no-install-recommends \ | |
| # Ghostscript is required for rendering PDF previews | |
| ghostscript \ | |
| ; \ | |
| rm -rf /var/lib/apt/lists/* |
OlderNewer