121 lines
3.7 KiB
YAML
121 lines
3.7 KiB
YAML
services:
|
|
php:
|
|
build:
|
|
context: .
|
|
target: app_php
|
|
args:
|
|
SYMFONY_VERSION: ${SYMFONY_VERSION:-}
|
|
STABILITY: ${STABILITY:-stable}
|
|
restart: unless-stopped
|
|
volumes:
|
|
- php_socket:/var/run/php
|
|
healthcheck:
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 30s
|
|
environment:
|
|
# Run "composer require symfony/orm-pack" to install and configure Doctrine ORM
|
|
DATABASE_URL: postgresql://${POSTGRES_USER:-app}:${POSTGRES_PASSWORD:-!ChangeMe!}@database:5432/${POSTGRES_DB:-app}?serverVersion=${POSTGRES_VERSION:-14}
|
|
# Run "composer require symfony/mercure-bundle" to install and configure the Mercure integration
|
|
MERCURE_URL: ${CADDY_MERCURE_URL:-http://caddy/.well-known/mercure}
|
|
MERCURE_PUBLIC_URL: https://${SERVER_NAME:-localhost}/.well-known/mercure
|
|
MERCURE_JWT_SECRET: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
|
|
caddy:
|
|
build:
|
|
context: .
|
|
target: app_caddy
|
|
depends_on:
|
|
- php
|
|
environment:
|
|
SERVER_NAME: ${SERVER_NAME:-localhost, caddy:80}
|
|
MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
|
|
MERCURE_SUBSCRIBER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
|
|
restart: unless-stopped
|
|
volumes:
|
|
- php_socket:/var/run/php
|
|
- caddy_data:/data
|
|
- caddy_config:/config
|
|
ports:
|
|
# HTTP
|
|
- target: 80
|
|
published: ${HTTP_PORT:-80}
|
|
protocol: tcp
|
|
# HTTPS
|
|
- target: 443
|
|
published: ${HTTPS_PORT:-443}
|
|
protocol: tcp
|
|
# HTTP/3
|
|
- target: 443
|
|
published: ${HTTP3_PORT:-443}
|
|
protocol: udp
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider https://localhost/ || exit 1"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
# 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: postgres:${POSTGRES_VERSION:-14}-alpine
|
|
environment:
|
|
POSTGRES_DB: ${POSTGRES_DB:-app}
|
|
# You should definitely change the password in production
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}
|
|
POSTGRES_USER: ${POSTGRES_USER:-app}
|
|
volumes:
|
|
- db-data:/var/lib/postgresql/data: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/postgresql/data:rw
|
|
healthcheck:
|
|
test: ["CMD", "pg_isready", "-U", "app"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
###< doctrine/doctrine-bundle ###
|
|
|
|
###> snc/redis-bundle ###
|
|
# Redis (official image) https://hub.docker.com/_/redis
|
|
redis:
|
|
image: redis:7-alpine
|
|
ports:
|
|
- "6389:6379"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "redis-cli -h 127.0.0.1 ping | grep 'PONG' || exit 1"]
|
|
interval: 10s
|
|
timeout: 30s
|
|
retries: 10
|
|
###< snc/redis-bundle ###
|
|
|
|
###< meilisearch/meilisearch-php ###
|
|
# https://docs.meilisearch.com/learn/cookbooks/docker.html#download-meilisearch-with-docker
|
|
meilisearch:
|
|
image: getmeili/meilisearch:v1.1
|
|
volumes:
|
|
- ./data.ms:/data.ms
|
|
ports:
|
|
- "7700:7700"
|
|
environment:
|
|
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY:-ms}
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:7700"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
###< meilisearch/meilisearch-php ###
|
|
|
|
volumes:
|
|
php_socket:
|
|
caddy_data:
|
|
caddy_config:
|
|
###> doctrine/doctrine-bundle ###
|
|
db-data:
|
|
###< doctrine/doctrine-bundle ###
|