mirror of
https://github.com/symfony/recipes.git
synced 2026-09-19 02:56:23 +03:00
Follow Docker's string recommendations for port mappings: https://docs.docker.com/compose/compose-file/compose-file-v3/#ports
19 lines
413 B
JSON
19 lines
413 B
JSON
{
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/"
|
|
},
|
|
"env": {
|
|
"#1": "MAILER_DSN=null://null"
|
|
},
|
|
"docker-compose": {
|
|
"docker-compose.override.yml": {
|
|
"services": [
|
|
"mailer:",
|
|
" image: schickling/mailcatcher",
|
|
" ports: [\"1025\", \"1080\"]"
|
|
]
|
|
}
|
|
},
|
|
"aliases": ["mailer", "mail"]
|
|
}
|