24 lines
		
	
	
		
			421 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			421 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.6
 | 
						|
 | 
						|
LABEL maintainer "André Peters <andre.peters@servercow.de>"
 | 
						|
 | 
						|
# Installation
 | 
						|
RUN apk add --update \
 | 
						|
	&& apk add --no-cache nagios-plugins-smtp \
 | 
						|
	nagios-plugins-tcp \
 | 
						|
	nagios-plugins-http \
 | 
						|
	nagios-plugins-ping \
 | 
						|
	curl \
 | 
						|
	bash \
 | 
						|
	jq \
 | 
						|
	fcgi \
 | 
						|
	nagios-plugins-mysql \
 | 
						|
	nagios-plugins-dns \
 | 
						|
    nagios-plugins-disk \
 | 
						|
	bind-tools
 | 
						|
 | 
						|
COPY watchdog.sh /watchdog.sh
 | 
						|
 | 
						|
# Less verbose
 | 
						|
CMD /watchdog.sh 2> /dev/null
 |