-
Dear community, I have unsuccessfully spent 3 nights trying to get Wazuh running in single-mode, but with a more complex Docker network setup. Goals:
If you are interested in the details, have a look into the Docker documentation about IPvlan 802.1Q trunk L2 mode example usage. (or if you have 40min time, this is the best video about Docker Networking.) Questions:
If anybody has successfully deployed Wazuh with Docker and macvlan, I would very much appreciate, if you could share some insights. Chris |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
After many more hours, I have been able to solve it - with the help from the docker community. The root cause of all my issues was that I did not understand the difference between Docker Volumes and Docker bind mounts. After changing my yml, it works perfectly fine.
Be aware that in the official wazuh-documentation, they use the old here is my finally working solution:
|
Beta Was this translation helpful? Give feedback.
-
note: github is not the right place to ask these questions. There is a very active google group. Try your luck there: https://groups.google.com/g/wazuh |
Beta Was this translation helpful? Give feedback.
After many more hours, I have been able to solve it - with the help from the docker community.
The root cause of all my issues was that I did not understand the difference between Docker Volumes and Docker bind mounts. After changing my yml, it works perfectly fine.
-- the containers talk to each other via an internal docker network
-- the dashboard container is accessible via its own IP-address
Be aware that in th…