summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpodman_launch_devenv.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/podman_launch_devenv.py b/podman_launch_devenv.py
index a155b8f..8896c02 100755
--- a/podman_launch_devenv.py
+++ b/podman_launch_devenv.py
@@ -3,12 +3,12 @@
3Rocky SSH Container Launcher 3Rocky SSH Container Launcher
4 4
5Manual build command: 5Manual build command:
6 podman build -f docker-build/Dockerfile -t rocky_dev:latest . 6 podman build -f docker_build/Dockerfile -t rocky_dev:latest .
7 7
8Usage: 8Usage:
9 python3 launcher.py # Build and launch container 9 python3 podman_launch_devenv.py # Build and launch container
10 python3 launcher.py --list # List running rocky-dev containers 10 python3 podman_launch_devenv.py --list # List running rocky-dev containers
11 python3 launcher.py --cleanup # Stop and remove all containers 11 python3 podman_launch_devenv.py --cleanup # Stop and remove all containers
12""" 12"""
13import subprocess, argparse, os, glob 13import subprocess, argparse, os, glob
14 14