Containers may require additional arguments when run, both to specify the command and/or additional arguments. This is implemented in podman as follows:
podman container run [options] image [command [arg …]]
VyOS does not yet support these additional arguments, it would be great if they could be implemented as additional options.
In order to be consistent with the “task scheduler”, it could be two separate options (e.g. “command” and “args”):
set container name busybox image alpine set container name busybox command echo set container name busybox args “Hello World”
Or maybe an alternative syntax is better?
set container name busybox image alpine set container name busybox command echo Hello World!