1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-09 17:06:31 +00:00

remove cleared todos

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels 2018-10-16 08:13:45 +02:00
parent 6985fc2a2c
commit 6282c45340
5 changed files with 9 additions and 12 deletions

0
Caddyfile Normal file
View File

View File

@ -49,17 +49,17 @@ publish: git-commit repo-login publish-base publish-core publish-webapp
git push git push
git push origin --tags git push origin --tags
publish-container: component ?= base
publish-container:
@echo 'publish latest to $(docker_repo)/kopano_$(component)'
docker push $(docker_repo)/kopano_$(component):${$(component)_version}
docker push $(docker_repo)/kopano_$(component):latest
publish-base: build-base tag-base publish-base: build-base tag-base
@echo 'publish latest to $(docker_repo)/kopano_base' component=base make publish-container
docker push $(docker_repo)/kopano_base:${base_version}
docker push $(docker_repo)/kopano_base:latest
publish-core: build-core tag-core publish-core: build-core tag-core
@echo 'publish latest to $(docker_repo)/kopano_core' component=core make publish-container
docker push $(docker_repo)/kopano_core:${core_version}
docker push $(docker_repo)/kopano_core:latest
publish-webapp: build-webapp tag-webapp publish-webapp: build-webapp tag-webapp
@echo 'publish latest to $(docker_repo)/kopano_webapp' component=webapp make publish-container
docker push $(docker_repo)/kopano_webapp:${webapp_version}
docker push $(docker_repo)/kopano_webapp:latest

View File

@ -10,7 +10,6 @@ ARG DEBIAN_FRONTEND=noninteractive
# install basics # install basics
# TODO require python3 or python3-minimal? # TODO require python3 or python3-minimal?
# TODO is dumb-init actually used?
RUN apt-get update && \ RUN apt-get update && \
apt-get upgrade -y && \ apt-get upgrade -y && \
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \

View File

@ -10,7 +10,6 @@ ARG RELEASE_KEY_DOWNLOAD=0
# install Kopano WebApp and refresh ca-certificates # install Kopano WebApp and refresh ca-certificates
RUN \ RUN \
# community download and package as apt source repository # community download and package as apt source repository
# TODO: source or execute repo script?
. /kopano/helper/create-kopano-repo.sh && \ . /kopano/helper/create-kopano-repo.sh && \
if [ ${DOWNLOAD_COMMUNITY_PACKAGES} -eq 1 ]; then \ if [ ${DOWNLOAD_COMMUNITY_PACKAGES} -eq 1 ]; then \
dl_and_package_community "core"; \ dl_and_package_community "core"; \

View File

@ -11,7 +11,6 @@ ARG RELEASE_KEY_DOWNLOAD=0
# install Kopano WebApp and refresh ca-certificates # install Kopano WebApp and refresh ca-certificates
RUN \ RUN \
# community download and package as apt source repository # community download and package as apt source repository
# TODO: source or execute repo script?
. /kopano/helper/create-kopano-repo.sh && \ . /kopano/helper/create-kopano-repo.sh && \
if [ ${DOWNLOAD_COMMUNITY_PACKAGES} -eq 1 ]; then \ if [ ${DOWNLOAD_COMMUNITY_PACKAGES} -eq 1 ]; then \
dl_and_package_community "core"; \ dl_and_package_community "core"; \