davmo
February 17, 2022, 11:32am
1
Hi all,
I’m hosting Vaultwarden using docker-compose. I updated it following these 3 steps
me@mymachine:~/vw$ sudo docker-compose stop
Stopping caddy ... done
Stopping vaultwarden ... done
me@mymachine:~/vw$ sudo docker-compose pull
Pulling vaultwarden ... done
Pulling caddy ... done
me@mymachine:~/vw$ sudo docker-compose start
Starting vaultwarden ... done
Starting caddy ... done
me@mymachine:~/vw$
Despite this, the web vault version is still 2.25.0.
On the github repo I see that the latest release should contain the version 2.25.1b
Am I doing anything wrong?
You need to run docker-compose up -d
1 Like
davmo
February 17, 2022, 1:13pm
3
Ouch, I was missing a step!
so, 4 steps are needed:
docker-compose stop
docker-compose pull
docker-compose start
docker-compose up -d
Thank you so much.
Well, actually i can be shorter.
docker-compose pull
docker-compose up -d
That will only re-create containers which have changes to either there version of config changes.
3 Likes
davmo
February 17, 2022, 2:19pm
5
thank you. There is always something to learn
kevdog
February 18, 2022, 6:29pm
6
Not sure if you want to always run the latest and greatest with your password manager however you could always use watchtower to automate the process you just described above.