I cant stop an incessant container

I command

docker stop container ID
docker rm -f container ID
I enter the container shell and command
kill 1

Nothing stops this container. Hence my entire django project is at a standstill because of it. The container is also hogging my port 8000. I need a super command that shoves it overboard.

ps aux | grep docker

review output and match the PID to the running container

kill {PID}