Closed Daniele6 closed 2 years ago
I get the same behaviour. I started testing out the docker-compose a few weeks back and it worked fine at the very start. Then after some pulling of new images it just stopped. I tried wiping the whole volumes and images, but to no avail.
Is it currently not working?
I get the same behaviour. I started testing out the docker-compose a few weeks back and it worked fine at the very start. Then after some pulling of new images it just stopped. I tried wiping the whole volumes and images, but to no avail.
Is it currently not working?
No, it still not working. I'm trying to find a solution but i hope they will fix it
Please ever be so kind and try changing the Dockerfile for constructing the icingaweb2 image in env/icingaweb2/Dockerfile like this. It downgrades the repo version to sometime in August:
[root@thalamus icinga-docker-compose.old]# cat env/icingaweb2/Dockerfile
FROM alpine/git
WORKDIR /
COPY icingadb-load-monitoring.patch .
RUN git clone https://github.com/Icinga/icingadb-web.git icingadb && \
cd icingadb && \
git checkout e6e5bb30d37eacaf5498f96412b4b5f400cc9309 && \
cd .. && \
git apply --directory icingadb icingadb-load-monitoring.patch
FROM icinga/icingaweb2:2.9
USER root
RUN rm -rf /usr/share/icingaweb2/modules/icingadb/*
USER www-data
COPY --from=0 /icingadb /usr/share/icingaweb2/modules/icingadb
It fixes it for me.
I am new to setting up Icinga. As it may seem this stack uses a rolling release for bleeding edge images and the patch being applied on the fly while building one of the images seems to be broken.
Thank you for your reply. It works! I did the same thing but i had to change the version of icinga/icingadb-web. if I can give you some advice, set every version because, in future, you may have the same problem with other images. I built a new image starting from https://github.com/Icinga/docker-icingadb and setting the version to 3f9a9aca35de245b263f7ff6123c79a6b4beb59a. Inside this repository, after cloning https://github.com/Icinga/icingadb.git as written in the "Build it yourself" section, set the version to b9ec99185a58b0294d08185a4249aa6e5c7fd71b. Hope it may help you
Hi,
Could you please try PR #13 and report if it fixes your problems?
All the best, Eric
Yes! For me it does! Thank you kindly.
It still works, thank you
Hi, since yesterday i can't see hosts, services and so on in icingaweb. If i run "icinga deamon -C" it confirms that there is a valid configuration. I tried to restart from zero but nothing changed. Thank you