Project

General

Profile

Actions

Upgrading Docker Applications » History » Revision 1

Revision 1/4 | Next »
Jon Goldberg, 11/29/2017 07:38 AM


Upgrading Docker Applications

On the red server, we run many applications in Docker. Here's the general procedure for upgrading them, along with instructions for specific apps..

Invoiceninja

#backup the db
mysqldump invoiceninja > in_pre38.sql

cd docker
# This upgades ALL Docker images that need updating (i.e. unless they're using a version-specific tag)
sudo docker-compose pull
sudo docker-compose up -d --build
# If you need to free up some space
docker system prune -a
  • Clear InvoiceNinja's cache! In the browser load any page with ?clear_cache=true appended.

Updated by Jon Goldberg over 6 years ago · 1 revisions