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.

38 lines
905 B

  1. # -*- ispell-local-dictionary: "english" -*-
  2. #+SETUPFILE: ~/.emacs.d/etc/setup/latex.setup
  3. #+SETUPFILE: ~/.emacs.d/etc/setup/html-readtheorg-local.setup
  4. #+TITLE: Rocket.Chat
  5. * Updating the charm to a new version
  6. We are using official image. Latest tags usually. You can
  7. double-check available candidate for official images like this:
  8. #+begin_src sh
  9. docker search rocket.chat
  10. #+end_src
  11. So we usually pull and test images like this :
  12. #+begin_src sh
  13. docker pull rocket.chat:X.Y.Z
  14. #+end_src
  15. This worked on 3.6.3, but changed before 3.8.0 to:
  16. #+begin_src sh
  17. docker pull rocketchat/rocket.chat:X.Y.Z
  18. #+end_src
  19. from: https://hub.docker.com/r/rocketchat/rocket.chat
  20. Get the available tags:
  21. #+begin_src sh
  22. docker-tags-fetch rocket.chat -l 15 -f "^[0-9]+\.[0-9]+\.[0-9]+" | sort -V
  23. #+end_src
  24. Rocket.chat has a powerfull and working update database that will
  25. take care of migrating database on startup.