1
0
mirror of https://github.com/zokradonh/kopano-docker.git synced 2026-08-20 21:03:06 +00:00

also build ssl helper container

fix creation of folders when ssl helper is run with mounted dirs
This commit is contained in:
Felix Bartels
2018-10-19 15:17:59 +02:00
parent a3315f61c9
commit b608aa59f5
3 changed files with 13 additions and 7 deletions
+8 -2
View File
@@ -11,7 +11,7 @@ webapp_download_version = $(shell ./version.sh webapp)
COMPONENT = $(shell echo $(component) | tr a-z A-Z)
build-all: build-base build-core build-webapp
build-all: build-ssl build-base build-core build-webapp
build: component ?= base
build:
@@ -26,6 +26,9 @@ build-core:
build-webapp:
component=webapp make build
build-ssl:
docker build -t $(docker_repo)/kopano_ssl ssl/
tag: component ?= base
tag:
@echo 'create tag $($(component)_version)'
@@ -48,7 +51,7 @@ tag-webapp:
repo-login:
docker login -u $(docker_login) -p $(docker_pwd)
publish: repo-login publish-base publish-core publish-webapp
publish: repo-login publish-ssl publish-base publish-core publish-webapp
git push
git push origin --tags
@@ -66,3 +69,6 @@ publish-core: build-core tag-core
publish-webapp: build-webapp tag-webapp
component=webapp make publish-container
publish-ssl: build-ssl
docker push $(docker_repo)/kopano_ssl:latest