boxd user you land in is in the docker group, so docker works the moment you connect, without sudo:
Compose
The image carries Compose v2 as a Docker plugin, so the command isdocker compose with a space:
docker-compose binary is not on the image.
Reach a container from the internet
The machine’s HTTPS domain forwards to port 8000 by default. Publish a container port there and it’s live:Containers survive fork and snapshot
A fork or snapshot captures the machine’s memory and disk together, so running containers come along. Fork a machine with a database container up and the copy has the same container up, data included. Suspend and resume work the same way.Disk space
Images, containers, and volumes live under/var/lib/docker on the machine’s 100 GB disk, shared with everything else on the machine. docker system prune reclaims space when builds pile up.