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
{{ message }}
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
stbt-docker is built with portability in mind so it should run on Mac OS and Windows. The only dependencies are Python and Docker. stbt-docker is self-contained and relocatable so it can be deployed as a single file with no dependency on anything else in stbt.
So I was trying to run stbt_docker on Windows, and as well as the issues described here - #18 , I kept getting a few more:
File "./stbt-docker", line 252, in build_docker_image
md5.update(stbt_version)
TypeError: Unicode-objects must be encoded before hashing
...
File "./stbt-docker", line 253, in build_docker_image
md5.update(setup)
TypeError: Unicode-objects must be encoded before hashing
...
File "./stbt-docker", line 214, in dict_to_tarball
ti.uid = os.getuid()
AttributeError: module 'os' has no attribute 'getuid'
I read that 'os.getuid()' is just available in Unix, so not sure if that can be fix for Windows in a different way?
The text was updated successfully, but these errors were encountered:
Hi,
I read in the installation notes about:
So I was trying to run stbt_docker on Windows, and as well as the issues described here - #18 , I kept getting a few more:
I read that 'os.getuid()' is just available in Unix, so not sure if that can be fix for Windows in a different way?
The text was updated successfully, but these errors were encountered: