apptainer instance stop

Stop a named instance of a given container image

Synopsis

The command apptainer instance stop allows you to stop and clean up a named, running instance of a given container image.

apptainer instance stop [stop options...] [instance]

Examples

$ apptainer instance start my-sql.sif mysql1
$ apptainer instance start my-sql.sif mysql2
$ apptainer instance stop mysql*
Stopping mysql1 instance of my-sql.sif (PID=23845)
Stopping mysql2 instance of my-sql.sif (PID=23858)

$ apptainer instance start my-sql.sif mysql1

Force instance to shutdown
$ apptainer instance stop -f mysql1 (may corrupt data)

Send SIGTERM to the instance
$ apptainer instance stop -s SIGTERM mysql1
$ apptainer instance stop -s TERM mysql1
$ apptainer instance stop -s 15 mysql1

Options

-a, --all             stop all user's instances
-F, --force           force kill instance
-h, --help            help for stop
-s, --signal string   signal sent to the instance
-t, --timeout int     force kill non stopped instances after X seconds (default 10)
-u, --user string     if running as root, stop instances belonging to user

SEE ALSO

Auto generated by spf13/cobra on 16-Feb-2023