Docker Compose (JSON)
Docker Compose in JSON format
JSON
{
"version": "3.8",
"services": {
"web": {
"image": "nginx:latest",
"ports": [
"80:80"
]
},
"db": {
"image": "postgres:15",
"environment": {
"POSTGRES_PASSWORD": "secret"
}
}
}
}Stats
- Key count: 9
- Nesting depth: 4
- Size: 236 bytes