mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 16:06:14 +00:00
* adapt webapp container for new php base image * clean out webapp dockerfile * complete switch of webapp to php-fpm * update config in web container * update readme * remove logging config from docker-compose.yml * add php container to tagging and publishing
20 lines
696 B
Bash
Executable File
20 lines
696 B
Bash
Executable File
#!/bin/sh
|
|
# waits for key events in various containers
|
|
# e.g. kopano_server:236 signals succesful start of kopano-server process
|
|
exec dockerize \
|
|
-wait file://var/run/kopano/grapi/notify.sock \
|
|
-wait file://var/run/kopano/server.sock \
|
|
-wait http://kopano_konnect:8777/.well-known/openid-configuration \
|
|
-wait tcp://"${KCCONF_SERVER_MYSQL_HOST}":3306 \
|
|
-wait tcp://kopano_dagent:2003 \
|
|
-wait tcp://kopano_gateway:143 \
|
|
-wait tcp://kopano_ical:8080 \
|
|
-wait tcp://kopano_kwmserver:8778 \
|
|
-wait tcp://kopano_meet:9080 \
|
|
-wait tcp://kopano_server:236 \
|
|
-wait tcp://kopano_server:237 \
|
|
-wait tcp://web:2015 \
|
|
-wait tcp://kopano_webapp:9080 \
|
|
-wait tcp://kopano_zpush:80 \
|
|
-timeout 120s
|