30 lines
645 B
YAML
30 lines
645 B
YAML
version: '3'
|
|
|
|
services:
|
|
###> doctrine/doctrine-bundle ###
|
|
database:
|
|
ports:
|
|
- "5432"
|
|
###< doctrine/doctrine-bundle ###
|
|
|
|
###> symfony/mailer ###
|
|
mailer:
|
|
image: axllent/mailpit
|
|
ports:
|
|
- "1025"
|
|
- "8025"
|
|
environment:
|
|
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
|
MP_SMTP_AUTH_ALLOW_INSECURE: 1
|
|
###< symfony/mailer ###
|
|
|
|
###> blackfireio/blackfire-symfony-meta ###
|
|
blackfire:
|
|
image: blackfire/blackfire:2
|
|
# uncomment to store Blackfire credentials in a local .env.local file
|
|
#env_file: .env.local
|
|
environment:
|
|
BLACKFIRE_LOG_LEVEL: 4
|
|
ports: ["8307"]
|
|
###< blackfireio/blackfire-symfony-meta ###
|