summaryrefslogtreecommitdiff
path: root/scripts/p7s/distrobox.py
blob: 45e11a6f733a094b97f55eeff6a412d108a0fe2d (plain)
1
2
3
4
5
6
7
8
9
10
import os
import subprocess


def create():
    subprocess.run(["distrobox", "create", "-i", "quay.io/alexpdp7/workstation:latest"], check=True)


def enter():
    os.execvp("distrobox", ["distrobox", "enter", "workstation-latest"])