4d343f9873
- Multi-stage Dockerfile (Alpine base, ~174MB) - All runtime dependencies: ffmpeg, ffprobe, ca-certificates, tzdata, wget - Camera database included in image (17MB) - Security: non-root user (strix:1000) - Healthcheck on /api/v1/health - docker-compose.yml for simple deployment - docker-compose.full.yml with go2rtc and Frigate integration - GitHub Actions workflow for automated multi-arch builds (amd64, arm64) - Auto-publish to Docker Hub (eduard256/strix) - DOCKER.md documentation
53 lines
443 B
Plaintext
53 lines
443 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.github
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Build artifacts
|
|
bin/
|
|
dist/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*.test
|
|
*_test.go
|
|
coverage.*
|
|
*.out
|
|
|
|
# Logs
|
|
*.log
|
|
strix.log
|
|
|
|
# Config files (user-specific)
|
|
strix.yaml
|
|
test_*.yaml
|
|
config.yaml
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.dump
|
|
*_output.txt
|
|
|
|
# Documentation (included in image metadata instead)
|
|
*.md
|
|
!README.md
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Development
|
|
.env
|
|
.env.local
|