* use fixed postgres & memcached versions & fix missing postgres env var * remove memcached contaienr build * fixed another version label * added postgres password to backup command * set postgres user & pass in .env file * fixed postgres in backup container * use zammad repo
		
			
				
	
	
		
			17 lines
		
	
	
		
			747 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			747 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM docker.elastic.co/elasticsearch/elasticsearch:7.6.0
 | |
| MAINTAINER Zammad <info@zammad.org>
 | |
| ARG BUILD_DATE
 | |
| 
 | |
| LABEL org.label-schema.build-date="$BUILD_DATE" \
 | |
|       org.label-schema.name="Zammad" \
 | |
|       org.label-schema.license="AGPL-3.0" \
 | |
|       org.label-schema.description="Docker container for Zammad - Elasticsearch" \
 | |
|       org.label-schema.url="https://zammad.org" \
 | |
|       org.label-schema.vcs-url="https://github.com/zammad/zammad" \
 | |
|       org.label-schema.vcs-type="Git" \
 | |
|       org.label-schema.vendor="Zammad" \
 | |
|       org.label-schema.schema-version="3.2.0" \
 | |
|       org.label-schema.docker.cmd="sysctl -w vm.max_map_count=262144;docker-compose up"
 | |
| 
 | |
| RUN yes | /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment
 |