github.com/docker/app@v0.9.1-beta3.0.20210611140623-a48f773ab002/internal/inspect/testdata/inspect-full-json.golden (about) 1 { 2 "Metadata": { 3 "Version": "0.1.0", 4 "Name": "myapp", 5 "Description": "some description", 6 "Maintainers": [ 7 { 8 "Name": "dev", 9 "Email": "dev@example.com" 10 } 11 ] 12 }, 13 "Services": [ 14 { 15 "Name": "web1", 16 "Image": "nginx:latest", 17 "Replicas": 2, 18 "Ports": "8080-8100" 19 }, 20 { 21 "Name": "web2", 22 "Image": "nginx:latest", 23 "Replicas": 2, 24 "Ports": "9080-9100" 25 } 26 ], 27 "Networks": [ 28 "my-network1", 29 "my-network2" 30 ], 31 "Volumes": [ 32 "my-volume1", 33 "my-volume2" 34 ], 35 "Secrets": [ 36 "my-secret1", 37 "my-secret2" 38 ], 39 "Parameters": { 40 "port": "8080", 41 "text": "hello" 42 }, 43 "Attachments": [ 44 { 45 "Path": "config.cfg", 46 "Size": 9 47 } 48 ] 49 }