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

add quick-test to makefile

fix socker for ical and gateway
enable non-ssl gateway and remove ssl options from docker-compose
ssl for gateway could be implemented as part of https://github.com/zokradonh/kopano-docker/issues/16

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels 2018-12-18 11:09:07 +01:00
parent 63e4acca3a
commit 485298bb76
3 changed files with 11 additions and 9 deletions

View File

@ -119,3 +119,9 @@ test:
make build-all make build-all
docker-compose build docker-compose build
docker-compose up -d docker-compose up -d
docker-compose ps
test-quick:
docker-compose stop || true
docker-compose up -d
docker-compose ps

View File

@ -6,11 +6,8 @@ kcconf.configkopano({
r"/etc/kopano/gateway.cfg": r"/etc/kopano/gateway.cfg":
{ {
'log_file': "-", 'log_file': "-",
'log_level': "4", 'log_level': "3",
'tmp_path': "/tmp/gateway/", 'tmp_path': "/tmp/gateway/"
'pop3_listen': "",
'imap_listen': "",
'imaps_listen': "*:993"
} }
}) })

View File

@ -253,9 +253,8 @@ services:
environment: environment:
- SERVICE_TO_START=gateway - SERVICE_TO_START=gateway
- TZ=${TZ} - TZ=${TZ}
- KCCONF_GATEWAY_SERVER_SOCKET=http://kserver:236/ - KCCONF_GATEWAY_SERVER_SOCKET=http://kopano_server:236/
- KCCONF_GATEWAY_SSL_PRIVATE_KEY_FILE=/kopano/certs/yourcert.key # change here - KCCONF_GATEWAY_LOG_LEVEL=6
- KCCONF_GATEWAY_SSL_CERTIFICATE_FILE=/kopano/certs/yourcert.pem # change here
networks: networks:
- kopanonet - kopanonet
@ -270,7 +269,7 @@ services:
environment: environment:
- SERVICE_TO_START=ical - SERVICE_TO_START=ical
- TZ=${TZ} - TZ=${TZ}
- KCCONF_ICAL_SERVER_SOCKET=http://kserver:236/ - KCCONF_ICAL_SERVER_SOCKET=http://kopano_server:236/
networks: networks:
- kopanonet - kopanonet