mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 05:23:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			924 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			924 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# To build run `docker build -f Dockerfile-postgresql .` from the root of the
 | 
						|
# zulip repo.
 | 
						|
 | 
						|
# Currently the PostgreSQL images do not support automatic upgrading of
 | 
						|
# the on-disk data in volumes. So the base image can not currently be upgraded
 | 
						|
# without users needing a manual pgdump and restore.
 | 
						|
 | 
						|
# Install hunspell, Zulip stop words, and run Zulip database
 | 
						|
# init.
 | 
						|
FROM groonga/pgroonga:latest-alpine-10-slim
 | 
						|
RUN apk add -U --no-cache hunspell-en
 | 
						|
RUN ln -sf /usr/share/hunspell/en_US.dic /usr/local/share/postgresql/tsearch_data/en_us.dict && ln -sf /usr/share/hunspell/en_US.aff /usr/local/share/postgresql/tsearch_data/en_us.affix 
 | 
						|
COPY puppet/zulip/files/postgresql/zulip_english.stop /usr/local/share/postgresql/tsearch_data/zulip_english.stop
 | 
						|
COPY scripts/setup/create-db.sql /docker-entrypoint-initdb.d/zulip-create-db.sql
 | 
						|
COPY scripts/setup/create-pgroonga.sql /docker-entrypoint-initdb.d/zulip-create-pgroonga.sql
 |