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
docker compose up -d
WARN[0000] /root/wazuh-docker/single-node/docker-coxmpose.yml: version attribute is outdated, will be ignored, please remove to avoid possible confusion
[+] 1/1 Working
wazuh.manager Error no manifest found for wazuh/wazuh-manager:5.0.0: manifest unkn... 2.0s
Error response from daemon: manifest not found for wazuh/wazuh-manager:5.0.0.0: manifest unknown: manifest unknown
so I have to replace it with the versions I can access
Like 4.8.0, I have not been able to access these images for a long time.
The text was updated successfully, but these errors were encountered:
make sure you're not using the latest compose files available in the repo, the tags changed, the latest from the documentation should say 4.8.2 instead of 5.0.0
The issue you encountered is related to our versioning and release system. In our repositories, the master or the main branch contains the latest development code (n this case, the 5.0.0 version). This version is currently being developed so the Docker images are not built.
If you want to deploy the latest Wazuh version, I suggest you to check out the "Releases" part of the repository: .
There, you can check which version is the latest. This is also documented in our official documentation.
Then, once you get the latest version of Wazuh (or the version you want to deploy), change the branch of your local repository (assuming that the repository is cloned in your machine) with the git checkout command. For example, if you want to deploy the Wazuh v4.8.2 version, use the git checkout v4.8.2 command and you will move to the v4.8.2 tag, deploying the correct version.
Besides, in the Docker compose installation guide, we recommend using docker-compose instead docker compose. We had this issue in our Docker repository to support the docker compose tool but this issue was closed because we will rework the Docker deployment in the future v5.0.0 Wazuh version.
5.0.0 image unfortunately does not work when we pull the current file images for example
Services:
wazuh.manager:
image: wazuh/wazuh-manager:5.0.0
but when docker compose up is run
the following error comes up.
docker compose up -d
WARN[0000] /root/wazuh-docker/single-node/docker-coxmpose.yml:
version
attribute is outdated, will be ignored, please remove to avoid possible confusion[+] 1/1 Working
wazuh.manager Error no manifest found for wazuh/wazuh-manager:5.0.0: manifest unkn... 2.0s
Error response from daemon: manifest not found for wazuh/wazuh-manager:5.0.0.0: manifest unknown: manifest unknown
so I have to replace it with the versions I can access
Like 4.8.0, I have not been able to access these images for a long time.
The text was updated successfully, but these errors were encountered: