Search - Login
Check the containers status:docker ps -aRestart all containers:sudo docker restart $(docker ps -a -q)ui-button
Check the containers status:
docker ps -a
Restart all containers:
sudo docker restart $(docker ps -a -q)
Get file from docker to host:First get the container id with:docher psThen execute:docker cp COTAINER_ID:/tmp/file.jpg ~/file.jpgui-button
Get file from docker to host:
First get the container id with:
docher ps
Then execute:
docker cp COTAINER_ID:/tmp/file.jpg ~/file.jpg