Use host network mode for Docker deployments
- Update docker run command to use --network host - Update docker-compose.yml to use network_mode: host - Update docker-compose.full.yml to use network_mode: host - Remove port mappings as they are not needed with host network
This commit is contained in:
@@ -38,7 +38,7 @@
|
||||
### Ubuntu / Debian
|
||||
|
||||
```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**
|
||||
|
||||
Reference in New Issue
Block a user