Docker.Official.Image
Docker.Official.Image copied to clipboard
Docker hub - community managed image
# Description This PR addresses the issue #204, regarding MongoDB crashing on Apple Silicon devices when running Rocket.Chat using Docker Compose. The root cause is related to QEMU not supporting...
Heavily inspired by NodeJS workflow https://github.com/nodejs/docker-node/blob/main/.github/workflows/official-pr.yml
Have first tried running the official image rocket.chat:6.6.0. Results in error below. suspect that the binary node module used was build with a later version of glibc. (also tried to...
Added the LABEL org.opencontainers.image.title="Rocket.Chat" \ org.opencontainers.image.description="The Complete Open Source Chat Solution" \ org.opencontainers.image.authors="Rocket.Chat Community" \ org.opencontainers.image.url="https://www.rocket.chat/" \ org.opencontainers.image.documentation="https://docs.rocket.chat/" \ org.opencontainers.image.source="https://github.com/RocketChat/Rocket.Chat" \ org.opencontainers.image.vendor="Rocket.Chat Community" \ org.opencontainers.image.licenses="MIT
https://github.com/opencontainers/image-spec/blob/v1.0.1/annotations.md From: https://github.com/docker-library/official-images/pull/5590#issuecomment-475786094
added the compose file version
## Context **As per official deploy docs: [here](https://docs.rocket.chat/deploy/prepare-for-your-deployment/rapid-deployment-methods/docker-and-docker-compose)** ```zsh docker compose up -d ``` This command will: - Start a MongoDB service named mongodb. - Start a service rocketchat, which...
#### The ReadMe needs to be updated with the correct Docker Compose command: In this section: https://github.com/RocketChat/Docker.Official.Image?tab=readme-ov-file#docker-compose The command to run both the mongo and Rocket.Chat containers is written: `docker-compose...
### Fixes issue mentioned in: #202