If you are running Deepstack on a remote server like a Jetson, a UI for managing the docker containers and viewing Deepstack logs is to use Portainer.
On Jetson (or any similar linux server) I installed with:
sudo docker volume create portainer_data
sudo docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
Then navigate to server_ip:9000 to view Portainer.
The UI for Deepstack looks as below, and the container can now be administered via the Portainer UI, rather than docker commands over SSH.