Browse Source
			
			
			Merge pull request #1321 from mkilchhofer/feature/improve_shutdown_behavior
			
				Improve shutdown behavior (on kubernetes and allow CTRL+C)
			
			
				pull/1327/head
			
			
		 
		
			
				
					
						
						Daniel García
					
					5 years ago
					
						
							committed by
							
								
								GitHub
							
						 
					
				 
				
			 
		 
		
			
				
					
					No known key found for this signature in database
					
						
							GPG Key ID: 4AEE18F83AFDEB23
						
					
				
			
		
		
		
	
		
			
				 7 changed files with 
16 additions and 
15 deletions
			 
			
		 
		
			
				- 
					
					
					 
					docker/Dockerfile.j2
				
 
			
				- 
					
					
					 
					docker/amd64/Dockerfile
				
 
			
				- 
					
					
					 
					docker/amd64/Dockerfile.alpine
				
 
			
				- 
					
					
					 
					docker/arm64/Dockerfile
				
 
			
				- 
					
					
					 
					docker/armv6/Dockerfile
				
 
			
				- 
					
					
					 
					docker/armv7/Dockerfile
				
 
			
				- 
					
					
					 
					docker/armv7/Dockerfile.alpine
				
 
			
		
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -204,6 +204,7 @@ RUN [ "cross-build-start" ] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN apk add --no-cache \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{%   if "sqlite" in features %} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        sqlite \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{%   endif %} | 
				
			
			
		
	
	
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
				
				 | 
				
					@ -220,14 +221,12 @@ RUN apt-get update && apt-get install -y \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    ca-certificates \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    sqlite3 \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libmariadb-dev-compat \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libpq5 \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    && rm -rf /var/lib/apt/lists/* | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{% endif %} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{% if "alpine" in target_file and "armv7" in target_file %} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community catatonit | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{% endif %} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN mkdir /data | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{% if "amd64" not in target_file %} | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -256,8 +255,5 @@ HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Configures the startup! | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR / | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{% if "alpine" in target_file and "armv7" in target_file %} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["catatonit", "/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{% else %} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENTRYPOINT ["/usr/bin/dumb-init", "--"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					{% endif %} | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  | 
				
			
			
		
	
								
							
						
					 
					
				 
			 
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -78,6 +78,7 @@ RUN apt-get update && apt-get install -y \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    ca-certificates \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    sqlite3 \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libmariadb-dev-compat \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libpq5 \ | 
				
			
			
		
	
	
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
				
				 | 
				
					@ -101,5 +102,5 @@ HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Configures the startup! | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR / | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENTRYPOINT ["/usr/bin/dumb-init", "--"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  | 
				
			
			
		
	
								
							
						
					 
					
				 
			 
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -74,6 +74,7 @@ ENV SSL_CERT_DIR=/etc/ssl/certs | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN apk add --no-cache \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        sqlite \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        postgresql-libs \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        ca-certificates | 
				
			
			
		
	
	
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
				
				 | 
				
					@ -96,5 +97,5 @@ HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Configures the startup! | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR / | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENTRYPOINT ["/usr/bin/dumb-init", "--"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  | 
				
			
			
		
	
								
							
						
					 
					
				 
			 
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -121,6 +121,7 @@ RUN apt-get update && apt-get install -y \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    ca-certificates \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    sqlite3 \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libmariadb-dev-compat \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libpq5 \ | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -147,5 +148,5 @@ HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Configures the startup! | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR / | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENTRYPOINT ["/usr/bin/dumb-init", "--"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  | 
				
			
			
		
	
								
							
						
					 
					
				 
			 
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -121,6 +121,7 @@ RUN apt-get update && apt-get install -y \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    ca-certificates \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    sqlite3 \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libmariadb-dev-compat \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libpq5 \ | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -147,5 +148,5 @@ HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Configures the startup! | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR / | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENTRYPOINT ["/usr/bin/dumb-init", "--"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  | 
				
			
			
		
	
								
							
						
					 
					
				 
			 
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -121,6 +121,7 @@ RUN apt-get update && apt-get install -y \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    ca-certificates \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    sqlite3 \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libmariadb-dev-compat \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    libpq5 \ | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -147,5 +148,5 @@ HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Configures the startup! | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR / | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENTRYPOINT ["/usr/bin/dumb-init", "--"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  | 
				
			
			
		
	
								
							
						
					 
					
				 
			 
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -77,9 +77,9 @@ RUN [ "cross-build-start" ] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN apk add --no-cache \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        openssl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        curl \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        dumb-init \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        sqlite \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        ca-certificates | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community catatonit | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN mkdir /data | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
	
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
				
				 | 
				
					@ -102,5 +102,5 @@ HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Configures the startup! | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR / | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["catatonit", "/start.sh"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENTRYPOINT ["/usr/bin/dumb-init", "--"] | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					CMD ["/start.sh"] | 
				
			
			
		
	
	
		
			
				
					| 
						
						
						
					 | 
				
				 | 
				
					
  |