Quick question ( ubuntu )

I run a process in the background,
(docker run -d --rm -p 8888:8888 --name testimage -v /home/userme/lucee/www:/var/www lucee/lucee4 &)

and now I want to kill it,
ps -u userme
show a list of processes including systemd
and two bash
so, which one?

Thanks.

None of the above.

Docker ps

Identify the container

Docker stop idofthecontainer

1 Like

yeah,Joe, man, I forgot docker ps, which i learned just a few months ago, got to use them more frequently, thanks.