27 lines
476 B
Plaintext
27 lines
476 B
Plaintext
# Ignore the environment file containing sensitive data
|
|
.env
|
|
|
|
# Ignore the config directory which may contain persistent data (e.g., Calibre database, metadata)
|
|
/app-config
|
|
/web-config
|
|
/calibre-lib
|
|
config/
|
|
|
|
# Ignore the Docker container image and build files
|
|
*.log
|
|
*.pid
|
|
docker-compose.override.yml
|
|
|
|
# Ignore any other temporary or autogenerated files
|
|
*.swp
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Ignore Docker-related metadata
|
|
.docker/
|
|
|
|
# Ignore system files created by editors
|
|
.DS_Store
|
|
Thumbs.db
|
|
|