mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-20 14:26:18 +00:00
* Update kweb to latest release
the fqdn needs to be part of kweb.cfg
make port 2015 explicit
fixes #208
* testing improvements
add git to build container
improve ci testing
add kopano-ical ports to setup
* no longer run kweb as root
now possible because of fd5c7307db
may require to manually delete the kopano_web data volume since kweb user cannot read data from root user.
13 lines
601 B
Docker
13 lines
601 B
Docker
FROM docker:18.09.6
|
|
ENV COMPOSE_VERSION "1.19.0"
|
|
ENV REG_VERSION "0.16.0"
|
|
RUN apk add --no-cache bash curl coreutils git expect make nano jq py-pip
|
|
RUN pip install --no-cache-dir docker-compose==${COMPOSE_VERSION}
|
|
# the 0.16.0 release of reg has a bug that breaks loading tags from the docker hub.
|
|
# issue is fixed in master, but not in a release.
|
|
# rel https://github.com/genuinetools/reg/issues/186
|
|
RUN curl -fSL "https://github.com/genuinetools/reg/releases/download/v$REG_VERSION/reg-linux-amd64" -o "/usr/local/bin/reg" \
|
|
&& chmod a+x "/usr/local/bin/reg"
|
|
WORKDIR /kopano-docker
|
|
CMD ["bash"]
|