Slide 29
Slide 29 text
"containerDefinitions": [{
"name": "db",
"image": "mongo:3.0.7",
"essential": true,
"memory": 256,
"mountPoints": [{
"sourceVolume": "data",
"containerPath": "/data/db"
}]
},
{
"name": "php",
"image": "sskorc/docker-symfony:latest",
"essential": true,
"memory": 256,
"links": ["db"],
"mountPoints": [{
"sourceVolume": "symfony-app",
"containerPath": "/var/www/docker-symfony"
}]
},