Merge branch 'develop'

This commit is contained in:
eduard256
2025-11-26 13:01:32 +03:00
4 changed files with 16 additions and 8 deletions
+13
View File
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.8] - 2025-11-26
### Changed
- Updated Docker deployment to use host network mode for better compatibility
- Modified docker-compose.yml to use `network_mode: host`
- Updated installation commands to use `--network host` flag
- Removed port mappings as they are not needed with host network mode
### Improved
- Better compatibility with unprivileged LXC containers
- Simplified Docker networking configuration
- Direct network access for improved camera discovery performance
## [1.0.7] - 2025-11-23 ## [1.0.7] - 2025-11-23
### Fixed ### Fixed
+1 -1
View File
@@ -38,7 +38,7 @@
### Ubuntu / Debian ### Ubuntu / Debian
```bash ```bash
sudo apt update && command -v docker >/dev/null 2>&1 || curl -fsSL https://get.docker.com | sudo sh && docker run -d --name strix -p 4567:4567 --restart unless-stopped eduard256/strix:latest sudo apt update && command -v docker >/dev/null 2>&1 || curl -fsSL https://get.docker.com | sudo sh && docker run -d --name strix --network host --restart unless-stopped eduard256/strix:latest
``` ```
Open **http://YOUR_SERVER_IP:4567** Open **http://YOUR_SERVER_IP:4567**
+1 -4
View File
@@ -9,13 +9,10 @@ services:
image: eduard256/strix:latest image: eduard256/strix:latest
container_name: strix container_name: strix
restart: unless-stopped restart: unless-stopped
ports: network_mode: host
- "4567:4567"
environment: environment:
- STRIX_LOG_LEVEL=info - STRIX_LOG_LEVEL=info
- STRIX_LOG_FORMAT=json - STRIX_LOG_FORMAT=json
networks:
- cameras
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:4567/api/v1/health"] test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:4567/api/v1/health"]
interval: 30s interval: 30s
+1 -3
View File
@@ -7,9 +7,7 @@ services:
# build: . # build: .
container_name: strix container_name: strix
restart: unless-stopped restart: unless-stopped
network_mode: host
ports:
- "4567:4567"
environment: environment:
# Logging configuration # Logging configuration