Foundry Virtual Tabletop
-
Updated to 12.331 => https://github.com/BrutalBirdie/cloudron-foundryvtt/releases/tag/12.331
-
B BrutalBirdie referenced this topic on
-
I'm very sorry for the amateur question, but I am having issues updating custom packages; how would you update an app in-place if it's not on the store?
-
I'm very sorry for the amateur question, but I am having issues updating custom packages; how would you update an app in-place if it's not on the store?
@TheMeerkat
e.g. to the latest version published:# get the latest CloudronManifest.json by either git pull if you checked out the repo or just use wget wget https://raw.githubusercontent.com/BrutalBirdie/cloudron-foundryvtt/refs/tags/12.331/CloudronManifest.json # update the app cloudron update --app $LOCATION --image brutalbirdie/foundryvtt.cloudron.app:1.0.0
Replace
$LOCATION
with your installed app locationYou can also use the App id instead of the location. For more information see
cloudron update --help
Done
Not sure if you still need the latest CloudronManifest.json but I included it anyway.
-
@TheMeerkat
e.g. to the latest version published:# get the latest CloudronManifest.json by either git pull if you checked out the repo or just use wget wget https://raw.githubusercontent.com/BrutalBirdie/cloudron-foundryvtt/refs/tags/12.331/CloudronManifest.json # update the app cloudron update --app $LOCATION --image brutalbirdie/foundryvtt.cloudron.app:1.0.0
Replace
$LOCATION
with your installed app locationYou can also use the App id instead of the location. For more information see
cloudron update --help
Done
Not sure if you still need the latest CloudronManifest.json but I included it anyway.
@BrutalBirdie Apparently you do need the manifest--that fixed the error message it threw at me before. Thanks, and sorry again.
-
All good! Happy to help.
Also, I will add this to the README of the repo. -
Thx for your work!
Unfortunately, I get an error: Access DeniedApp update error: Installation failed: Unable to pull image brutalbirdie/foundryvtt.cloudron.app/tags/1.1.0. message: (HTTP code 404) unexpected - pull access denied for brutalbirdie/foundryvtt.cloudron.app/tags/1.1.0, repository does not exist or may require 'docker login': denied: requested access to the resource is denied statusCode: 404
-
Thx for your work!
Unfortunately, I get an error: Access DeniedApp update error: Installation failed: Unable to pull image brutalbirdie/foundryvtt.cloudron.app/tags/1.1.0. message: (HTTP code 404) unexpected - pull access denied for brutalbirdie/foundryvtt.cloudron.app/tags/1.1.0, repository does not exist or may require 'docker login': denied: requested access to the resource is denied statusCode: 404
@hpz24
OH! That is because I have a typo in my release!
The/tags/
part in the docker image "url" was wrong. Silly me
Correct is -brutalbirdie/foundryvtt.cloudron.app:1.1.0
# go into /tmp/ download the manifest, update $LOCATION, delete the manifest and go into $HOME cd /tmp/ && \ wget https://raw.githubusercontent.com/BrutalBirdie/cloudron-foundryvtt/refs/tags/13.342/CloudronManifest.json && \ cloudron update --app $LOCATION --image brutalbirdie/foundryvtt.cloudron.app:1.1.0 && \ rm CloudronManifest.json && \ cd ~/