| 12345678910111213141516171819202122232425262728293031 |
- # Ignore unnecessary files for Docker builds
- .git
- .gitignore
- README.md
- docker-compose.yml
- run-tests.sh
- Makefile
- *.md
- .env*
- # Ignore test data and logs
- data/
- logs/
- *.log
- # Ignore temporary files
- .DS_Store
- Thumbs.db
- *.tmp
- *.swp
- *.swo
- *~
- # Ignore IDE files
- .vscode/
- .idea/
- *.iml
- # Ignore other Docker files
- Dockerfile*
- docker-compose*
|