Skip to content

Commit 6ddaa36

Browse files
author
lerndevops
authored
Create yaml-concept
1 parent f3367fc commit 6ddaa36

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

docker/compose/yaml-concept

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
yaml -- data serialization
2+
indentation -- spaces
3+
4+
strings
5+
6+
car: bmw
7+
name: narseh
8+
class: devops
9+
10+
dictionary / map
11+
12+
car:
13+
name: bmw
14+
color: red
15+
engine: 3L
16+
17+
array / list
18+
19+
cars:
20+
- bmw:
21+
name: mycar
22+
color: white
23+
engine: 2.5L
24+
- audi
25+
- RR

0 commit comments

Comments
 (0)