You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is on the latest master (commit 2008cbb), with git 2.30.1.
Basically, running ./xfce-test start fails with:
Starting container: Unable to find image 'schuellerf/xfce-test:master' locally
docker: Error response from daemon: manifest for schuellerf/xfce-test:master not found: manifest unknown: manifest unknown.
Ditto for ./xfce-test pull (./xfce-start pull [TAG] works though).
Debugging the script with set -x reveals that it sets TAG=master using git, but there's no such Docker tag on Dockerhub. Since the git tags do not necessarily correspond to the Dockerhub tags, I think this causes the above behavior.
Proposed fix
Compare the output of the get_tagsfunction with whatever the user provided for TAG, or use latest if it's unset.
The text was updated successfully, but these errors were encountered:
JCGoran
added a commit
to JCGoran/xfce-test
that referenced
this issue
Mar 11, 2021
This is on the latest master (commit 2008cbb), with git
2.30.1
.Basically, running
./xfce-test start
fails with:Ditto for
./xfce-test pull
(./xfce-start pull [TAG]
works though).Debugging the script with
set -x
reveals that it setsTAG=master
using git, but there's no such Docker tag on Dockerhub. Since the git tags do not necessarily correspond to the Dockerhub tags, I think this causes the above behavior.Proposed fix
Compare the output of the
get_tags
function with whatever the user provided forTAG
, or uselatest
if it's unset.The text was updated successfully, but these errors were encountered: