17 lines
225 B
Plaintext
17 lines
225 B
Plaintext
# ignore everything
|
|
*
|
|
|
|
# don't ignore dirs so we can look inside them
|
|
!*/
|
|
|
|
# but do ignore volumes and subsubsubdirs e.g. hostname/container/configstuff
|
|
volumes/
|
|
*/*/*/
|
|
|
|
# only allow .yml files
|
|
!*.yml
|
|
|
|
!*.md
|
|
!.gitignore
|
|
.env
|