Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rocketchat: bump to 6.9.3 #254

Merged
merged 2 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rocketchat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV BUNDLE_DIR /home/rocketchat/bundle
# Rocket.Chat Buildmaster <[email protected]>
ENV PUBLIC_KEY 0E163286C20D07B9787EBE9FD7F9D0414FD08104

ENV RC_VERSION 6.5.5
ENV RC_VERSION 6.9.3

COPY patches /home/rocketchat/patches

Expand Down
4 changes: 2 additions & 2 deletions rocketchat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Rocket.Chat is a self-hosted alternative to Slack.
</tr>
<tr>
<td>Version</td>
<td><a href="https://github.com/RocketChat/Rocket.Chat/releases/tag/6.5.5">6.5.5</a></td>
<td><a href="https://github.com/RocketChat/Rocket.Chat/releases/tag/6.9.3">6.9.3</a></td>
</tr>
<tr>
<td>Release date</td>
<td>26 Mar 2024</td>
<td>28 Jun 2024</td>
</tr>
<tr>
<td>Port</td>
Expand Down
11 changes: 1 addition & 10 deletions rocketchat/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
version: "2"
services:
rocketchat:
image: cusdeb/rocketchat:6.5-amd64
image: cusdeb/rocketchat:6.9-amd64
restart: always
networks:
- rocketchat-network
environment:
- PORT=8006
- MONGO_DATABASE=rocketchat
Expand All @@ -16,15 +14,11 @@ services:
mongo:
image: mongo:4.4
restart: always
networks:
- rocketchat-network
volumes:
- ./_db:/data/db
command: mongod --oplogSize 128 --replSet rs0
mongo-init-replica:
image: mongo:4.4
networks:
- rocketchat-network
command: >
bash -c
"for i in $$(seq 1 30); do
Expand All @@ -38,6 +32,3 @@ services:
done; (exit $$s)"
depends_on:
- mongo
networks:
rocketchat-network:
driver: bridge
Loading