Move docker installation scripts to virtualization/Docker path. Splits out openalpr to seperate script. (#5676)
This commit is contained in:
parent
89ec752064
commit
8247acb7b9
10 changed files with 155 additions and 132 deletions
16
virtualization/Docker/scripts/ffmpeg
Executable file
16
virtualization/Docker/scripts/ffmpeg
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
# Sets up ffmpeg.
|
||||
|
||||
# Stop on errors
|
||||
set -e
|
||||
|
||||
PACKAGES=(
|
||||
ffmpeg
|
||||
)
|
||||
|
||||
# Add jessie-backports
|
||||
echo "Adding jessie-backports"
|
||||
echo "deb http://deb.debian.org/debian jessie-backports main" >> /etc/apt/sources.list
|
||||
apt-get update
|
||||
|
||||
apt-get install -y --no-install-recommends -t jessie-backports ${PACKAGES[@]}
|
Loading…
Add table
Add a link
Reference in a new issue