tree-sitter-dockerfile/corpus/volume.txt

70 lines
818 B
Plaintext
Raw Normal View History

2021-05-09 22:11:30 -04:00
==================
Single volume
==================
VOLUME /myvol
---
(source_file
(volume_instruction
(path)))
==================
Multiple volumes
==================
volume /myvol1 /myvol2
---
(source_file
(volume_instruction
(path)
(path)))
==================
Multiline volumes
==================
VOLUME /myvol1 \
/myvol2
---
(source_file
(volume_instruction
(path)
(line_continuation)
2021-05-09 22:11:30 -04:00
(path)))
==================
Array
==================
VOLUME ["/test/myvol"]
---
(source_file
(volume_instruction
(string_array
(double_quoted_string))))
==================
Multiline array
==================
VOLUME ["/test/myvol", \
"/test/myvol2"]
---
(source_file
(volume_instruction
(string_array
(double_quoted_string)
(line_continuation)
2021-05-09 22:11:30 -04:00
(double_quoted_string))))