Skip to content

Commit 2769e52

Browse files
committed
docker: Experimentally enable local arm64 or multiarch image builds.
Allow building amd64+arm64 multiarch images locally for those brave enough to experiment with them. Refs zulip#357.
1 parent 8823d78 commit 2769e52

File tree

3 files changed

+86
-8
lines changed

3 files changed

+86
-8
lines changed

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ WORKDIR /home/zulip/zulip
3838

3939
ARG CUSTOM_CA_CERTIFICATES
4040

41-
# Finally, we provision the development environment and build a release tarball
41+
# Finally, we provision the development environment and build a release
42+
# tarball, after first bumping Yarn's network timeout to 5 minutes to account
43+
# for occasional glitches in QEMU environments (eg. multiarch builds).
44+
RUN echo 'network-timeout 300000' >> ~/.yarnrc
4245
RUN SKIP_VENV_SHELL_WARNING=1 ./tools/provision --build-release-tarball-only
4346
RUN . /srv/zulip-py3-venv/bin/activate && \
4447
./tools/build-release-tarball docker && \

Makefile

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
.POSIX:
2+
.DEFAULT_GOAL: help
3+
4+
REGISTRY ?= docker.io/zulip/docker-zulip
5+
REGISTRY_TAG ?= undefined
6+
PUSH_LATEST_TAG ?= 0
7+
ifeq ($(PUSH_LATEST_TAG), 1)
8+
PUSH_LATEST_TAG_ARG = -t $(REGISTRY):latest
9+
else
10+
PUSH_LATEST_TAG_ARG =
11+
endif
12+
# Default to creating our own buildx context, as "default", using the native
13+
# "docker" driver, can result in errors like the following when using Linux
14+
# distros' Docker and not Docker Desktop:
15+
#
16+
# ERROR: multiple platforms feature is currently not supported for docker
17+
# driver. Please switch to a different driver (eg. "docker buildx create
18+
# --use")
19+
BUILDX_BUILDER ?= zulip
20+
BUILDX_PLATFORMS ?= linux/amd64,linux/arm64
21+
22+
.PHONY: help
23+
help:
24+
@echo "This Makefile wraps Docker and Docker BuildX to build multiarch Zulip images." \
25+
"Make sure a recent Docker and BuildX are installed on your system - Docker Desktop users (on any OS) should be good to go, those using Linux distribution's builds of Docker will need to find the correct packages."
26+
@echo
27+
@echo "To use, set REGISTRY, REGISTRY_TAG, perhaps to 'local', and optionally override BUILDX_PLATFORMS." \
28+
"Additionally, PUSH_LATEST_TAG can be set to 1 to additonally tag :local when pushing to the registry." \
29+
"Then, run the build-multiarch-containers target. For example:"
30+
@echo
31+
@echo " make build-multiarch-containers REGISTRY=docker.example.com/myorg/zulip REGISTRY_TAG=local PUSH_LATEST_TAG=1"
32+
@echo
33+
@echo "By default, REGISTRY:REGISTRY_TAG will be built for linux/amd64 and linux/arm64. Adding other platforms to this list is unsupported and will almost certainly not work, but the list can be shrunk."
34+
@echo "REGISTRY must be set to something the builder has push access to, because BuildX images and manifests are not loaded into the host's Docker registry."
35+
@echo
36+
@echo "One can expect this step to take many multiples of the time it takes to build the Zulip image for just the native architecture." \
37+
"If it takes 10 minutes to build the amd64 image by itself, expect cross-compiling the arm64 image to take 30-60 minutes on most currently-common hardware." \
38+
"Currently, distributing the image builds to multiple machines (perhaps to allow the arm64 image to build on a native arm64 host for efficiency) is unsupported."
39+
@echo
40+
@echo "Assuming all goes well, REGISTRY:REGISTRY_TAG will point to a multiarch manifest referring to an image for each of BUILDX_PLATFORMS, which can then be rolled out to your infrastructure, used in Docker Compose, etc."
41+
@echo
42+
@echo "Please report bugs with this Makefile or anything it runs, or with running Zulip on arm64 in general, at https://github.com/zulip/docker-zulip and/or at https://chat.zulip.org"
43+
44+
.PHONY: reset-qemu-static
45+
reset-qemu-static:
46+
# --credential yes is required to run sudo within qemu, without it the
47+
# effective UID after a call to sudo will not be 0 and sudo in cross-built
48+
# containers (eg. the arm64 build if running on an amd64 host) will fail
49+
#
50+
# see also: https://github.com/crazy-max/ghaction-docker-buildx/issues/213
51+
#
52+
# We're allowing failures here (- prefix) for two main reasons:
53+
#
54+
# - BUILDX_PLATFORMS can be overridden to a single, native platform (meaning
55+
# this QEMU reset won't be necessary anyway)
56+
# - On ZFS<2.2 root filesystems, this incantation can fail due to Docker-side
57+
# dataset teardown issues as documented in
58+
# https://github.com/moby/moby/issues/40132. The QEMU reset may have
59+
# succeeded despite the Docker daemon errors, so we'll try to power through.
60+
-docker run --rm --privileged multiarch/qemu-user-static --reset -p yes --credential yes
61+
62+
.PHONY: build-multiarch-containers
63+
ifeq ($(REGISTRY_TAG), undefined)
64+
build-multiarch-containers:
65+
$(error REGISTRY_TAG must be provided in environment or make incantation)
66+
else
67+
build-multiarch-containers: reset-qemu-static
68+
(docker buildx ls | grep "$(BUILDX_BUILDER)" 2>&1 >/dev/null) || docker buildx create --name $(BUILDX_BUILDER) --platform $(BUILDX_PLATFORMS) --bootstrap --use
69+
docker buildx build --platform $(BUILDX_PLATFORMS) -t $(REGISTRY):$(REGISTRY_TAG) $(PUSH_LATEST_TAG_ARG) --push .
70+
endif

README.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,20 @@ This is a container image for running [Zulip](https://zulip.com)
1010

1111
Current Zulip version: `6.1`
1212
Current Docker image version: `6.1-0`
13+
Current architectures supported: `amd64`
1314

14-
Project status: **Alpha**. While this project works and is
15-
used by many sites in production, configuring is substantially more
16-
error-prone than the [normal Zulip installer][normal-install] (which
17-
Just Works). We recommend this project if you want to host Zulip
18-
using Docker, but both setting up and maintaining a Zulip server is
19-
simpler and less error-prone with the normal installer than with Docker.
15+
<!-- Remove when https://github.com/zulip/docker-zulip/issues/357 resolved -->
16+
> `arm64` support is experimental, and is not provided in the Docker Hub
17+
> images. To build an `arm64` image yourself, see `make help` locally.
2018
21-
[normal-install]: https://zulip.readthedocs.io/en/latest/production/install.html
19+
Project status: **Alpha**. While these images work and are used by many sites
20+
in production, configuring is substantially more error-prone than the [bare
21+
metal Zulip installer][bare-metal-install] (which Just Works, though generally
22+
expects a dedicated node). We're actively working to improve the situation, but
23+
for now recommend these containers and orchestrator recipes primarily to those
24+
comfortable being early adopters, and who are ready to report bugs.
25+
26+
[bare-metal-install]: https://zulip.readthedocs.io/en/latest/production/install.html
2227

2328
## Overview
2429

0 commit comments

Comments
 (0)