mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-10-23 04:51:58 +00:00
Update to Zulip Server 7.5.
This commit is contained in:
@@ -28,7 +28,7 @@ WORKDIR /home/zulip
|
||||
# You can specify these in docker-compose.yml or with
|
||||
# docker build --build-arg "ZULIP_GIT_REF=git_branch_name" .
|
||||
ARG ZULIP_GIT_URL=https://github.com/zulip/zulip.git
|
||||
ARG ZULIP_GIT_REF=7.4
|
||||
ARG ZULIP_GIT_REF=7.5
|
||||
|
||||
RUN git clone "$ZULIP_GIT_URL" && \
|
||||
cd zulip && \
|
||||
|
@@ -6,10 +6,10 @@ This is a container image for running [Zulip](https://zulip.com)
|
||||
([GitHub](https://github.com/zulip/zulip)) in
|
||||
[production][prod-overview]. Image available from:
|
||||
|
||||
- [**Docker Hub**](https://hub.docker.com/r/zulip/docker-zulip) (`docker pull zulip/docker-zulip:7.4-0`)
|
||||
- [**Docker Hub**](https://hub.docker.com/r/zulip/docker-zulip) (`docker pull zulip/docker-zulip:7.5-0`)
|
||||
|
||||
Current Zulip version: `7.4`
|
||||
Current Docker image version: `7.4-0`
|
||||
Current Zulip version: `7.5`
|
||||
Current Docker image version: `7.5-0`
|
||||
|
||||
Project status: **Alpha**. While this project works and is
|
||||
used by many sites in production, configuring is substantially more
|
||||
@@ -197,7 +197,7 @@ instead of the IP of the load balancer itself, by [setting the
|
||||
IPs][loadbalancer-ips] under `[loadbalancer]` in `zulip.conf`.
|
||||
|
||||
Your proxy must provide both `X-Forwarded-For` and
|
||||
`X-Forwarded-Proto` headers. See the Zulip documentation for sample
|
||||
`X-Forwarded-Proto` headers. See the Zulip documentation for sample
|
||||
[nginx][nginx-proxy], [Apache2][apache2-proxy], and
|
||||
[HAProxy][haproxy-proxy] configurations, as well as notes for [other
|
||||
proxies][other-proxy].
|
||||
|
@@ -49,14 +49,14 @@ services:
|
||||
volumes:
|
||||
- "redis:/data:rw"
|
||||
zulip:
|
||||
image: "zulip/docker-zulip:7.4-0"
|
||||
image: "zulip/docker-zulip:7.5-0"
|
||||
restart: unless-stopped
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
# Change these if you want to build zulip from a different repo/branch
|
||||
ZULIP_GIT_URL: https://github.com/zulip/zulip.git
|
||||
ZULIP_GIT_REF: "7.4"
|
||||
ZULIP_GIT_REF: "7.5"
|
||||
# Set this up if you plan to use your own CA certificate bundle for building
|
||||
# CUSTOM_CA_CERTIFICATES:
|
||||
ports:
|
||||
|
@@ -1,3 +1,7 @@
|
||||
## [0.7.5] - 2023-11-17
|
||||
|
||||
- Update Zulip Server to 7.5
|
||||
|
||||
## [0.7.4] - 2023-09-15
|
||||
|
||||
- Update Zulip Server to 7.4
|
||||
|
@@ -6,13 +6,13 @@ icon: https://raw.githubusercontent.com/zulip/zulip/main/static/images/logo/zuli
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 0.7.4
|
||||
version: 0.7.5
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||
# It is recommended to use it with quotes.
|
||||
appVersion: "7.4-0"
|
||||
appVersion: "7.5-0"
|
||||
dependencies:
|
||||
- name: memcached
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
|
@@ -1,6 +1,6 @@
|
||||
# Zulip
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
[Zulip](https://zulip.com/) is an open source threaded team chat that helps teams stay productive and focused.
|
||||
|
||||
@@ -72,7 +72,7 @@ Now you're ready to follow [the installation instructions above](#installation).
|
||||
| fullnameOverride | string | `""` | Fully override common.names.fullname template. |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | Pull policy for Zulip docker image. Ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images |
|
||||
| image.repository | string | `"zulip/docker-zulip"` | Defaults to hub.docker.com/zulip/docker-zulip, but can be overwritten with a full HTTPS address. |
|
||||
| image.tag | string | `"7.4-0"` | Zulip image tag (immutable tags are recommended) |
|
||||
| image.tag | string | `"7.5-0"` | Zulip image tag (immutable tags are recommended) |
|
||||
| imagePullSecrets | list | `[]` | Global Docker registry secret names as an array. |
|
||||
| ingress.annotations | object | `{}` | Can be used to add custom Ingress annotations. |
|
||||
| ingress.enabled | bool | `false` | Enable this to use an Ingress to reach the Zulip service. |
|
||||
|
@@ -15,7 +15,7 @@ image:
|
||||
# Ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
pullPolicy: IfNotPresent
|
||||
# -- Zulip image tag (immutable tags are recommended)
|
||||
tag: "7.4-0"
|
||||
tag: "7.5-0"
|
||||
|
||||
# -- Global Docker registry secret names as an array.
|
||||
imagePullSecrets: []
|
||||
|
@@ -86,7 +86,7 @@ spec:
|
||||
- name: postgresql-persistent-storage
|
||||
mountPath: /var/lib/postgresql
|
||||
- name: zulip
|
||||
image: zulip/docker-zulip:7.4-0
|
||||
image: zulip/docker-zulip:7.5-0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 100m
|
||||
|
Reference in New Issue
Block a user