11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
# First, ignore everything
|
|
*
|
|
!.gitignore
|
|
# Now, whitelist anything that's a directory
|
|
!*/
|
|
# And all the file types you're interested in.
|
|
!**/*docker-compose.yaml*
|
|
!**/*docker-compose.yml*
|
|
|
|
#docker-environment environment files
|
|
!**/*.env |