Created
June 5, 2017 15:49
-
-
Save mmarchini/bc9df7b82127fea13612edf8bffdf96f to your computer and use it in GitHub Desktop.
Docker Env converter from Windows to WSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from subprocess import run, PIPE | |
completed_process = run(["docker-machine.exe", "env", "--shell", "bash"], stdout=PIPE) | |
docker_env = completed_process.stdout.decode("ascii") | |
for line in docker_env.split("\n"): | |
if "DOCKER_CERT_PATH" in line: | |
env_var, path, _ = line.split('"') | |
path = path.replace("\\", "/") | |
drive, path = path.split(":", 1) | |
path = "/mnt/{}{}".format(drive.lower(), path) | |
line = '{}"{}"'.format(env_var, path) | |
print(line) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks a lot!