A community-provided, unofficial ARM64 build of Rocket.Chat for ARM-based servers.
618
This repository provides a working Docker image for running modern versions of Rocket.Chat on linux/arm64 (aarch64) platforms. The official Docker images for Rocket.Chat often lack timely support for this architecture, and building from source is a significant challenge due to dependency and build tool incompatibilities.
This image was purpose-built to provide a stable, out-of-the-box solution, resolving common and frustrating runtime errors including:
sharp image processing library.This build is based on the following verified component versions:
| Component | Version / Details |
|---|---|
| Rocket.Chat Version | 7.9.3 |
| Commit Hash | 0fc6713ad |
| Node.js Version | v22.18.0 |
| Apps Engine Version | 1.54.0 |
| MongoDB Version | 5.0.31 / wiredTiger |
| Architecture | linux/arm64 |
To get started, create a docker-compose.yml file with the content below.
IMPORTANT: Replace https://your-domain.com with your own domain name.
version: '3.8'
services: rocketchat:
image: p1626/rocketchat-arm64:7.9.3 platform: linux/arm64 restart: unless-stopped volumes:
mongo: image: mongo:5.0 platform: linux/arm64 restart: unless-stopped volumes:
text
Save the file: Save the content above into a file named docker-compose.yml.
Start the services: From your terminal, in the same directory as your file, run:
docker compose up -d
Initialize the database: This is a critical one-time step. After the containers have started (wait ~15-30 seconds), run the following command to initialize the MongoDB replica set:
docker compose exec mongo mongosh --eval "rs.initiate({ _id: '0', members: [ { _id: 0, host: 'mongo:27017' } ] })"
Access your server: Your Rocket.Chat instance should now be running and fully accessible at the ROOT_URL you configured.
This is an unofficial, community-provided build. It is not affiliated with or supported by Rocket.Chat Inc. It was created to help users on ARM64 platforms get a working instance of Rocket.Chat running.
Content type
Image
Digest
sha256:7c0af0f13…
Size
1.2 GB
Last updated
11 months ago
docker pull p1626/rocketchat-arm64:7.9.3-r