mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-10-31 02:17:47 +00:00 
			
		
		
		
	update example compose file with new names for containers
This commit is contained in:
		
							parent
							
								
									6a0635a232
								
							
						
					
					
						commit
						19d3d8a831
					
				| @ -8,8 +8,8 @@ services: | |||||||
|     restart: always |     restart: always | ||||||
|     privileged: true |     privileged: true | ||||||
|     links: |     links: | ||||||
|       - kwebapp |       - kopano_webapp | ||||||
|       #- kzpush |       - kopano_zpush | ||||||
|     ports: |     ports: | ||||||
|       - "2015:2015" |       - "2015:2015" | ||||||
|       - "${HTTP}:80" |       - "${HTTP}:80" | ||||||
| @ -40,7 +40,6 @@ services: | |||||||
|     networks: |     networks: | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
|   ldap-admin: |   ldap-admin: | ||||||
|     image: osixia/phpldapadmin:0.7.2 |     image: osixia/phpldapadmin:0.7.2 | ||||||
|     container_name: ldap-admin |     container_name: ldap-admin | ||||||
| @ -131,15 +130,15 @@ services: | |||||||
|     networks: |     networks: | ||||||
|       - kopanonet |       - kopanonet | ||||||
|    |    | ||||||
|   kssl: |   kopano_ssl: | ||||||
|     image: ${docker_repo:?err}/kopano_ssl |     image: ${docker_repo:?err}/kopano_ssl | ||||||
|     container_name: kopano_ssl |     container_name: kopano_ssl | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
| 
 | 
 | ||||||
|   kserver: |   kopano_server: | ||||||
|     image: ${docker_repo}/kopano_core:${CORE_VERSION} |     image: ${docker_repo}/kopano_core:${CORE_VERSION} | ||||||
|     hostname: kserver |     hostname: kopano_server | ||||||
|     container_name: kopano_server |     container_name: kopano_server | ||||||
|     links: |     links: | ||||||
|       - db |       - db | ||||||
| @ -147,7 +146,7 @@ services: | |||||||
|     depends_on: |     depends_on: | ||||||
|       - db |       - db | ||||||
|       - ldap |       - ldap | ||||||
|       - kssl |       - kopano_ssl | ||||||
|     environment: |     environment: | ||||||
|       - SERVICE_TO_START=server |       - SERVICE_TO_START=server | ||||||
|       - TZ=${TZ} |       - TZ=${TZ} | ||||||
| @ -179,12 +178,12 @@ services: | |||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| 
 | 
 | ||||||
|   kwebapp: |   kopano_webapp: | ||||||
|     image: ${docker_repo:?err}/kopano_webapp:${WEBAPP_VERSION} |     image: ${docker_repo:?err}/kopano_webapp:${WEBAPP_VERSION} | ||||||
|     hostname: kwebapp |     hostname: kopano_webapp | ||||||
|     container_name: kopano_webapp |     container_name: kopano_webapp | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| @ -197,12 +196,12 @@ services: | |||||||
|       - web |       - web | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
|   kzpush: |   kopano_zpush: | ||||||
|     image: ${docker_repo:?err}/kopano_zpush:${WEBAPP_VERSION} |     image: ${docker_repo:?err}/kopano_zpush:${WEBAPP_VERSION} | ||||||
|     hostname: kzpush |     hostname: kopano_zpush | ||||||
|     container_name: kopano_zpush |     container_name: kopano_zpush | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| @ -216,11 +215,11 @@ services: | |||||||
|       - web |       - web | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
|   kdagent: |   kopano_dagent: | ||||||
|     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} |     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} | ||||||
|     container_name: kopano_dagent |     container_name: kopano_dagent | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| @ -232,13 +231,13 @@ services: | |||||||
|     networks: |     networks: | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
|   kspooler: |   kopano_spooler: | ||||||
|     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} |     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} | ||||||
|     container_name: kopano_spooler |     container_name: kopano_spooler | ||||||
|     hostname: spooler |     hostname: spooler | ||||||
|     domainname: ${LDAP_DOMAIN} |     domainname: ${LDAP_DOMAIN} | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| @ -251,11 +250,11 @@ services: | |||||||
|     networks: |     networks: | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
|   kgateway: |   kopano_gateway: | ||||||
|     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} |     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} | ||||||
|     container_name: kopano_gateway |     container_name: kopano_gateway | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| @ -268,11 +267,11 @@ services: | |||||||
|     networks: |     networks: | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
|   kical: |   kopano_ical: | ||||||
|     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} |     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} | ||||||
|     container_name: kopano_ical |     container_name: kopano_ical | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| @ -283,11 +282,11 @@ services: | |||||||
|     networks: |     networks: | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
|   kmonitor: |   kopano_monitor: | ||||||
|     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} |     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} | ||||||
|     container_name: kopano_monitor |     container_name: kopano_monitor | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
| @ -297,11 +296,11 @@ services: | |||||||
|     networks: |     networks: | ||||||
|       - kopanonet |       - kopanonet | ||||||
| 
 | 
 | ||||||
|   ksearch: |   kopano_search: | ||||||
|     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} |     image: ${docker_repo:?err}/kopano_core:${CORE_VERSION} | ||||||
|     container_name: kopano_search |     container_name: kopano_search | ||||||
|     links: |     links: | ||||||
|       - kserver |       - kopano_server | ||||||
|     volumes: |     volumes: | ||||||
|       - kopanossl/:/kopano/ssl |       - kopanossl/:/kopano/ssl | ||||||
|       - kopanosocket/:/run/kopano |       - kopanosocket/:/run/kopano | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user