mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-10-31 10:27:14 +00:00 
			
		
		
		
	* Configuration file for OpenIdConnect integration is now generated on container startup * Add a startup dependency to owncloud phoenix Signed-off-by: Felix Bartels <felix@host-consultants.de>
		
			
				
	
	
		
			18 lines
		
	
	
		
			799 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			799 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # This is for the moment only for testing purposes. Starts owncloud with the phoenix ui (available from /files) and the owncloud openid component (not yet public).
 | |
| # Both parts need to be extracted into the owncloud directory
 | |
| # TODO when this is final, these parts should be part of the owncloud docker image (maybe just need to be enabled as apps)
 | |
| version: "3.5"
 | |
| services:
 | |
|   owncloud:
 | |
|     depends_on:
 | |
|       - kopano_konnect
 | |
|     volumes:
 | |
|       - ./owncloud/99-oidc.sh:/etc/owncloud.d/99-oidc.sh
 | |
|       - ./owncloud/openidconnect/:/mnt/data/apps/openidconnect/
 | |
|       - ./owncloud/phoenix/:/mnt/data/apps/phoenix/
 | |
|       - ./owncloud/config.json:/mnt/data/apps/phoenix/config.json
 | |
|   web:
 | |
|     volumes:
 | |
|       - ./owncloud/phoenix/:/var/www/files/
 | |
|       - ./owncloud/config.json:/var/www/files/config.json
 |