29 lines
416 B
Plaintext
29 lines
416 B
Plaintext
# Ignore Docker Compose configuration files
|
|
docker-compose.yaml
|
|
docker-compose-dev.yaml
|
|
|
|
# Ignore development Dockerfile
|
|
Dockerfile
|
|
Dockerfile.dev
|
|
docker-dev.sh
|
|
|
|
# Ignore the data directory
|
|
data/
|
|
|
|
# Ignore version control system directories
|
|
.git/
|
|
|
|
# Ignore log and temporary files
|
|
*.log
|
|
*.tmp
|
|
*.swp
|
|
|
|
# Ignore editor/IDE configuration files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Ignore binaries and build cache
|
|
release/
|
|
bin/
|
|
*.exe
|
|
*.out |