Created
January 13, 2026 13:23
-
-
Save arirangz/d2967f18f653f359ef1b4c4f02ba88c2 to your computer and use it in GitHub Desktop.
compose.yaml
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
| --- | |
| services: | |
| php: | |
| image: ${IMAGES_PREFIX:-}app-php | |
| restart: unless-stopped | |
| environment: | |
| SERVER_NAME: ${SERVER_NAME:-localhost}, php:80 | |
| DEFAULT_URI: https://${SERVER_NAME:-localhost}:${HTTPS_PORT:-443} | |
| MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!} | |
| MERCURE_SUBSCRIBER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!} | |
| # Run "composer require symfony/orm-pack" to install and configure Doctrine ORM | |
| DATABASE_URL: mysql://${MYSQL_USER:-app}:${MYSQL_PASSWORD:-!ChangeMe!}@database:3306/${MYSQL_DATABASE:-app}?serverVersion=${MYSQL_VERSION:-8}&charset=${MYSQL_CHARSET:-utf8mb4} # Run "composer require symfony/mercure-bundle" to install and configure the Mercure integration | |
| MERCURE_URL: ${CADDY_MERCURE_URL:-http://php/.well-known/mercure} | |
| MERCURE_PUBLIC_URL: ${CADDY_MERCURE_PUBLIC_URL:-https://${SERVER_NAME:-localhost}:${HTTPS_PORT:-443}/.well-known/mercure} | |
| MERCURE_JWT_SECRET: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!} | |
| # The two next lines can be removed after initial installation DATABASE_URL: postgresql://${POSTGRES_USER:-app}:${POSTGRES_PASSWORD:-!ChangeMe!}@database:5432/${POSTGRES_DB:-app}?serverVersion=${POSTGRES_VERSION:-15}&charset=${POSTGRES_CHARSET:-utf8} | |
| SYMFONY_VERSION: ${SYMFONY_VERSION:-} | |
| STABILITY: ${STABILITY:-stable} | |
| volumes: | |
| - caddy_data:/data | |
| - caddy_config:/config | |
| ports: | |
| - name: http | |
| target: 80 | |
| published: ${HTTP_PORT:-80} | |
| protocol: tcp | |
| - name: https | |
| target: 443 | |
| published: ${HTTPS_PORT:-443} | |
| protocol: tcp | |
| - name: http3 | |
| target: 443 | |
| published: ${HTTP3_PORT:-443} | |
| protocol: udp | |
| # Mercure is installed as a Caddy module, prevent the Flex recipe from installing another service | |
| ###> symfony/mercure-bundle ### | |
| ###< symfony/mercure-bundle ### | |
| ###> doctrine/doctrine-bundle ### | |
| database: | |
| image: mysql:${MYSQL_VERSION:-8} | |
| environment: | |
| MYSQL_DATABASE: ${MYSQL_DATABASE:-app} | |
| # You should definitely change the password in production | |
| MYSQL_RANDOM_ROOT_PASSWORD: "true" | |
| MYSQL_PASSWORD: ${MYSQL_PASSWORD:-!ChangeMe!} | |
| MYSQL_USER: ${MYSQL_USER:-app} | |
| POSTGRES_USER: ${POSTGRES_USER:-app} | |
| healthcheck: | |
| test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"] | |
| timeout: 5s | |
| retries: 5 | |
| start_period: 60s | |
| volumes: | |
| - database_data:/var/lib/mysql:rw | |
| # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data! | |
| # - ./docker/db/data:/var/lib/mysql:rw | |
| ###< doctrine/doctrine-bundle ### | |
| volumes: | |
| caddy_data: | |
| caddy_config: | |
| ###> symfony/mercure-bundle ### | |
| ###< symfony/mercure-bundle ### | |
| ###> doctrine/doctrine-bundle ### | |
| database_data: | |
| ###< doctrine/doctrine-bundle ### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment