# Docker ignore file for Gemini CLI MCP # Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # Virtual environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ .python-version # IDE .vscode/ .idea/ *.swp *.swo *~ # macOS .DS_Store .AppleDouble .LSOverride Icon ._* .Spotlight-V100 .Trashes .fseventsd .DocumentRevisions-V100 .TemporaryItems .VolumeIcon.icns .com.apple.timemachine.donotpresent # Git .git/ .gitignore *.orig # Docker Dockerfile* docker-compose*.yml .dockerignore # Redis data (should not be in image) docker/redis-data/ *.rdb *.aof # Logs *.log logs/ docker/logs/ # Security *.key *.pem *.p12 *.pfx .env.local .env.production .env.staging # Testing .coverage .pytest_cache/ .tox/ .nox/ htmlcov/ .cache/ # Documentation docs/_build/ *.md # Temporary files tmp/ temp/ *.tmp # Reports reports/ # Security rotation logs security_rotation.log # Backup files *.bak *.backup # Archive files *.tar.gz *.zip *.7z