mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-11-04 04:17:27 +00:00 
			
		
		
		
	* implement new env variable to disable all automatic actions fixes https://github.com/zokradonh/kopano-docker/issues/360 * wrap the remaining services in checks if autoconfigure/disable_checks is used * move definition of AUTOCONFIGURE variable into base image * add logic to kapps and kdav container * add autoconfigure to konnect container * update build stage to latest golang * add autoconfig to remaining images * delete obsolete apache config in z-push folder * when specifying config paths use KOPANO_CONFIG_PATH * also use env variable in helper scripts * add message about removal of kopano-cli
		
			
				
	
	
		
			30 lines
		
	
	
		
			901 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			901 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
ARG CODE_VERSION=0.1.0
 | 
						|
FROM kopano/kwmbridged:${CODE_VERSION}
 | 
						|
 | 
						|
ARG CODE_VERSION
 | 
						|
ENV \
 | 
						|
    AUTOCONFIGURE=true \
 | 
						|
    CODE_VERSION="${CODE_VERSION}"
 | 
						|
 | 
						|
LABEL maintainer=az@zok.xyz \
 | 
						|
    org.label-schema.name="Kopano Kwmbridge container" \
 | 
						|
    org.label-schema.description="Container for running Kopano Kwmbridge (SFU)" \
 | 
						|
    org.label-schema.url="https://kopano.io" \
 | 
						|
    org.label-schema.vcs-url="https://github.com/zokradonh/kopano-docker" \
 | 
						|
    org.label-schema.version=$CODE_VERSION \
 | 
						|
    org.label-schema.schema-version="1.0"
 | 
						|
 | 
						|
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
 | 
						|
 | 
						|
USER root
 | 
						|
ENV DOCKERIZE_VERSION v0.11.6
 | 
						|
RUN wget -O - https://github.com/powerman/dockerize/releases/download/"$DOCKERIZE_VERSION"/dockerize-"$(uname -s)"-"$(uname -m)" | install /dev/stdin /bin/dockerize
 | 
						|
USER nobody
 | 
						|
 | 
						|
COPY wrapper.sh /usr/local/bin
 | 
						|
 | 
						|
ENTRYPOINT ["wrapper.sh"]
 | 
						|
 | 
						|
ARG VCS_REF
 | 
						|
LABEL org.label-schema.vcs-ref=$VCS_REF
 |