Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Git
.git
.gitignore

# Python cache
__pycache__
*.py[cod]
*$py.class
.cache
.cache.*
.cache.sqlite

# Virtual environments
.venv
venv
env
ENV

# IDE files
.vscode
.idea
*.swp
*.swo

# OS files
.DS_Store
Thumbs.db

# Logs and databases (will be mounted as volumes)
*.log
*.db
*.db-wal
*.db-shm

# Config (will be mounted as volume)
config.ini

# Documentation (not needed in container)
docs/
*.md
!README.md

# Service installation scripts (not needed in container)
*.service
*.plist
install-service.sh
uninstall-service.sh
restart_viewer.sh

# Test files
test_*.py
*_test.py
tests/
test_scripts/

# Development artifacts
docs/local/
bot_start_time.txt
mctomqtt.py
bot_cli.py

# Docker files (no need to copy into context)
docker-compose*.yml
Loading