generate: container: s/container crate/container create
Signed-off-by: Enno Tensing <tenno@suij.in>
This commit is contained in:
parent
62d56248df
commit
ec61600b87
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ class Container:
|
||||||
def create_container(self) -> str:
|
def create_container(self) -> str:
|
||||||
"""Generate podman container create command."""
|
"""Generate podman container create command."""
|
||||||
cmd = f"# Create container {self.name}\n"
|
cmd = f"# Create container {self.name}\n"
|
||||||
cmd += "podman container crate \\\n"
|
cmd += "podman container create \\\n"
|
||||||
cmd += f"\t--name={self.name} \\\n"
|
cmd += f"\t--name={self.name} \\\n"
|
||||||
if self.privileged:
|
if self.privileged:
|
||||||
cmd += "\t--privileged \\\n"
|
cmd += "\t--privileged \\\n"
|
||||||
|
|
Loading…
Add table
Reference in a new issue