Safely stopping a running container
Find a running container on your system
docker ps (observe the correct name)
Inspect the properties of the running container for example:
docker inspect name_cardano_wallet_cardano-wallet_1 ("com.docker.compose.project.working_dir")
cd into the project working dir
cd project.working_dir
Shut down the running container using the following command
NETWORK=mainnet docker-compose down
Verify all running container have stopped
docker ps