You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure that you don't use docker desktop and that you don't have it installed on your machine. If you have this setup, it will not work as intended as the `--network host` will not link the container to the host network, but to the network of a VM that docker desktop uses.
46
+
47
+
-**Build the Container**:
48
+
```bash
49
+
docker build -t rustiflow .
50
+
```
51
+
-**Run the Container**:
52
+
```bash
53
+
docker run --network host -v /path/on/host:/app rustiflow [ARGS like you are used to]
54
+
```
55
+
Run it with the --privileged flag if you want to capture traffic in real-time.
@@ -72,25 +106,6 @@ See the wiki for the different feature sets available.
72
106
73
107
## Usage Instructions
74
108
75
-
### Using the Container:
76
-
77
-
Make sure that you don't use docker desktop and that you don't have it installed on your machine. If you have this setup, it will not work as intended as the `--network host` will not link the container to the host network, but to the network of a VM that docker desktop uses.
78
-
79
-
-**Build the Container**:
80
-
```bash
81
-
docker build -t rustiflow .
82
-
```
83
-
-**Run the Container**:
84
-
```bash
85
-
docker run --network host -v /path/on/host:/app rustiflow [ARGS like you are used to]
86
-
```
87
-
Run it with the --privileged flag if you want to capture traffic in real-time.
0 commit comments