2022-04-20 Docker ROS VNC

 

Installing docker on ubuntu (NEVER use SNAP version, it has lots of problems with dockers)

Connect to docker bash

Copy files into docker

 

Run docker mounting local file system folder and TCP port forwarding

 

Docker build from Dockerfile in root dir

 

Docker list containers

 

Docker start container

 

Docker create container from image

 

Docker lkill container

 

Docker remove images

 

Docker remove container

Docker save image

 

Dockerfile

 

RUN - shell commands executed in sequence, better to combine as many as possible to have option to cache data

 

COPY - coppies files and directories to target image, executed in sequence, ⚠️ Very important to use with .dockerignore , because docker will include all files in ./Dockerfile root without it regardless of COPY commands

 

CMD - startup script shell

there can only be one CMD instruction in a Dockerfile. If more than one CMD instruction is listed, only the last CMD will take effect only single last CMD will be executed in

 

Cleanup as much as you can in docker image to reduce size

 

Mofiyable parameters

then wehn running can pass with -e

Size and performance

Important to have .dockerignore, othewise will copy ALL files from directory in container

 

Sometimes can use docker-slim to reduce size of already built docker images

Building from Dockerfile

Dockerfile in root directory, then build using

On MacOS ARM can also build Linux x64 dockers

Discard cached scripts

 

Docker control

Start, restart, stop, status

 

Other

 

Docker for using ROS under MacOS 2023-03-28