1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-12 02:16:12 +00:00
kopano-docker/web/Dockerfile
Felix Bartels a7f0d298ad
make it possible to redirect to another url, than /webapp (#221)
* make it possible to redirect to another url, than /webapp
* add documentation
* define default value in container
* add value to .env through setup.sh
2019-08-22 16:57:31 +02:00

21 lines
642 B
Docker

ARG CODE_VERSION=0.7.0
FROM kopano/kwebd:${CODE_VERSION}
ARG VCS_REF
ARG CODE_VERSION
ENV CODE_VERSION="${CODE_VERSION}"
ENV DEFAULTREDIRECT="/webapp"
COPY wrapper.sh /usr/local/bin
COPY kweb.cfg /etc/kweb.cfg
LABEL maintainer=az@zok.xyz \
org.label-schema.name="Kopano Web container" \
org.label-schema.description="Reverse proxy for http(s) based components of kopano-docker" \
org.label-schema.url="https://kopano.io" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/zokradonh/kopano-docker" \
org.label-schema.version=$CODE_VERSION \
org.label-schema.schema-version="1.0"