Can a Docker network be renamed from the command line?

It’s been a while sense I’ve created this network in my Docker environment. It’s called wpsite . While running Docker for Windows Desktop, I can easily go to the terminal of any of my Docker projects (via VS Code), and see that its up and running by typing:

docker network ls

enter image description here

My containers are growing and I need this network for them but the name for organization purposes is becoming too specific. Is there anyway from the terminal we can rename a network?

FYI - I don’t care if I have to go into every docker-compose file and change the network name. I just want the ability to give my network a more appropriate name.

Is this possible?