Optimized networking and matomo

This commit is contained in:
2025-02-11 04:49:21 +01:00
parent 5cb1aa45ad
commit 60c84d57ba
15 changed files with 77 additions and 50 deletions

View File

@@ -12,6 +12,16 @@
docker volume rm $(docker volume ls -q -f "dangling=true")
```
### network issues
```bash
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker network prune -f
sudo iptables -t nat -F DOCKER
sudo iptables -t nat -F DOCKER-USER
```
## performance
- https://forums.docker.com/t/mysql-slow-performance-in-docker/37179/21