!:n*
From the nth word to the last: the tail of the line.
The asterisk after the number means "from here to the end". !:1* is everything but the command — same as !:* — and !:2* starts at the second argument.
It shines when swapping one command for another that takes the same syntax: the whole tail crosses over intact.
$ docker run -it --rm debian bash
$ podman !:1*
podman run -it --rm debian bash