32 lines
353 B
Plaintext
32 lines
353 B
Plaintext
# Docker ignore file for Excommunicado
|
|
|
|
# Environment & secrets
|
|
.env
|
|
.env.*
|
|
|
|
# Data directory (we mount it as volume instead)
|
|
data/
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
|
|
# IDE / OS
|
|
.vscode/
|
|
.idea/
|
|
*.log
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml
|