1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-07 16:06:14 +00:00

fixup check for jq in version.sh (#158)

replace kopano-cli in scheduler container (for the moment, binary is currently missing in master)

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels 2019-05-16 22:00:28 +02:00 committed by GitHub
parent 38d9993b68
commit 67219e46cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -508,7 +508,7 @@ services:
- kopano_zpush - kopano_zpush
environment: environment:
- TZ=${TZ} - TZ=${TZ}
- CRON_KOPANOUSERS=10 * * * * docker exec kopano_server kopano-cli --sync - CRON_KOPANOUSERS=10 * * * * docker exec kopano_server kopano-admin --sync
- CRON_ZPUSHGAB=0 22 * * * docker exec kopano_zpush z-push-gabsync -a sync - CRON_ZPUSHGAB=0 22 * * * docker exec kopano_zpush z-push-gabsync -a sync
- CRONDELAYED_KBACKUP=30 1 * * * docker run --rm -it zokradonh/kopano_utils kopano-backup -h - CRONDELAYED_KBACKUP=30 1 * * * docker run --rm -it zokradonh/kopano_utils kopano-backup -h
env_file: env_file:

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
if ! hash jq; then if ! command -v jq > /dev/null; then
echo "Please install jq in order to run this build script." echo "Please install jq in order to run this build script."
exit 1 exit 1
fi fi