You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# -*- ispell-local-dictionary: "english" -*- #+SETUPFILE: ~/.emacs.d/etc/setup/latex.setup #+SETUPFILE: ~/.emacs.d/etc/setup/html-readtheorg-local.setup
#+TITLE: Rocket.Chat
* Updating the charm to a new version
We are using official image. Latest tags usually. You can double-check available candidate for official images like this:
#+begin_src sh docker search rocket.chat #+end_src
So we usually pull and test images like this :
#+begin_src sh docker pull rocket.chat:X.Y.Z #+end_src
This worked on 3.6.3, but changed before 3.8.0 to:
#+begin_src sh docker pull rocketchat/rocket.chat:X.Y.Z #+end_src
from: https://hub.docker.com/r/rocketchat/rocket.chat
Get the available tags:
#+begin_src sh docker-tags-fetch rocket.chat -l 15 -f "^[0-9]+\.[0-9]+\.[0-9]+" | sort -V #+end_src
Rocket.chat has a powerfull and working update database that will take care of migrating database on startup.
|