Back to wiki
Bytesized Hosting

Docker Connect

Docker for Bytesized Connect

Sometimes you want to finer control over the applications that BCD manages for you. Here are some useful commands.

docker ps -a - Lists all docker containers.

docker restart/stop/start &ltCONTAINERID&gt - Control a container directly.

docker exec &ltCONTAINERID&gt - Run a command inside the container.

docker exec -it &ltCONTAINERID&gt bash -l - &quotEnter&quot the container, spawning a bash shell so you can look around.

for c in $(docker ps -a | awk ' { print $1 }') do docker start $c 2&gt /dev/nulldone - Start all Docker containers.

docker stats - Shows real time container resource utilisation (cpu, memory, disk &amp network I/O).

Versions
25
Last Update
Tue, 14 Apr 2026 19:30:21 +0200