Open vosdev opened 5 years ago
Hello!
Both docker containers are broken.
opinkerfi/adagios-git refuses to start. When restart=Always is added to the compose file it will be in a restart loop.
opinkerfi/adagios-git
restart=Always
opinkerfi/adagios-rpm refuses to serve requests
opinkerfi/adagios-rpm
curl http://0.0.0.0:8080 curl: (56) Recv failure: Connection reset by peer
No stdout/stderr on the containers and the logs directory is empty.
Compose file taken from the example with the addition of restart: always:
restart: always
version: '3.1' services: adagios: image: opinkerfi/adagios-git:latest restart: always ports: - 8080:80 - 6557:6557 volumes: - ./adagios:/opt/adagios - ./pynag:/opt/pynag - ./logs:/var/log/nagios volumes: adagios: pynag: logs:
Thanks for submitting this @Nachtmerrie , we will verify this at our end and see if it reproducable and see what needs to be done to mitigate these errors.
Hello!
Both docker containers are broken.
opinkerfi/adagios-git
refuses to start. Whenrestart=Always
is added to the compose file it will be in a restart loop.opinkerfi/adagios-rpm
refuses to serve requestsNo stdout/stderr on the containers and the logs directory is empty.
Compose file taken from the example with the addition of
restart: always
: