标签:image ica .com bundle roo red verify tmp server
Docker to run and manage apps side-by-side in isolated containers to get better compute density. Using containers, everything required to make a piece of software run is packaged into isolated containers. Unlike VMs, containers do not bundle a full operating system – only libraries and settings required to make the software work are needed. This makes for efficient, lightweight, self-contained systems and guarantees that software will always run the same, regardless of where it’s deployed.
$ wget -qO- https://get.docker.com/ | sh
The above command downloads and executes a small installation script written by the Docker team.
$ docker pull jrottenberg/ffmpeg
$ alias ffmpeg=‘docker run -v=`pwd`:/tmp/workdir jrottenberg/ffmpeg‘
$ source ~/.bashrc
#To reload .bashrc
$ ffmpeg -buildconf
Installing ffmpeg using docker
标签:image ica .com bundle roo red verify tmp server
原文地址:https://www.cnblogs.com/hanstar/p/10336126.html