14 lines
493 B
PowerShell
14 lines
493 B
PowerShell
$imagename = Read-Host -Prompt 'Container image to initialize'
|
|
$containername = Read-Host -Prompt 'Container instance name [default=$imagename]'
|
|
if (!$containername) { $containername = $imagename }
|
|
|
|
$command = ("docker run -d " +
|
|
"--name "+ $containername + " " +
|
|
"-v /tmp/.X11-unix:/tmp/.X11-unix " +
|
|
"-v /mnt/wslg:/mnt/wsl " +
|
|
"-e WAYLAND_DISPLAY=`$WAYLAND_DISPLAY " +
|
|
"-e DISPLAY=`$DISPLAY " +
|
|
"-e XDG_RUNTIME_DIR=/mnt/wslg " +
|
|
$imagename)
|
|
|
|
wsl bash -ic $command |