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
There is a little problem in Docker/wass_docker_run.sh. The last line reads
docker run -p ...... T -i -t wass
This does not work and produces this error
Unable to find image 'wass:latest' locally
docker: Error response from daemon: pull access denied for wass, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
See 'docker run --help'.
Solution was trivial, I replaced -t wass with -t bergamasco/wass and it worked.
The text was updated successfully, but these errors were encountered:
Hi schplurtz,
I got the same error and solved with the same as your method by replace wass with bergamasco/wass:runall. However, when I rerun the command, another error occured. Did you ever got similar error? Thanks a lot !
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "wass_runall.py", line 70, in
do_main()
File "wass_runall.py", line 60, in do_main
isidle, completedtasks = refresh_status( pbar )
File "wass_runall.py", line 13, in refresh_status
r = requests.get(ADDR+'/fullstatus').json()
File "/usr/local/lib/python3.7/site-packages/requests/api.py", line 73, in get
return request("get", url, params=params, **kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/api.py", line 59, in request
return session.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/sessions.py", line 589, in request
resp = self.send(prep, **send_kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/sessions.py", line 703, in send
r = adapter.send(request, **kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/adapters.py", line 519, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='wass', port=8080): Max retries exceeded with url: /fullstatus (Caused by NameResolutionError("<urllib3.connection.HTTPConnection object at 0x7f4951c90f10>: Failed to resolve 'wass' ([Errno -2] Name does not resolve)"))
Hi again,
There is a little problem in
Docker/wass_docker_run.sh
. The last line readsThis does not work and produces this error
Solution was trivial, I replaced
-t wass
with-t bergamasco/wass
and it worked.The text was updated successfully, but these errors were encountered: