0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2024-09-30 16:32:36 +02:00

Merge pull request #634 from J0WI/594

Fix #594: svg support for imagick on Debian
This commit is contained in:
J0WI 2019-02-06 14:17:03 +01:00 committed by GitHub
commit f2397fafc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 1 deletions

View file

@ -49,6 +49,9 @@ The required steps for each optional/recommended package that is not already in
#### ffmpeg #### ffmpeg
`apt install ffmpeg` `apt install ffmpeg`
#### imagemagick SVG support
`apt install libmagickcore-6.q16-3-extra`
#### LibreOffice #### LibreOffice
`apt install libreoffice` `apt install libreoffice`

View file

@ -5,6 +5,7 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
ffmpeg \ ffmpeg \
libmagickcore-6.q16-3-extra \
smbclient \ smbclient \
supervisor \ supervisor \
# libreoffice \ # libreoffice \

View file

@ -4,6 +4,7 @@ RUN set -ex; \
\ \
apk add --no-cache \ apk add --no-cache \
ffmpeg \ ffmpeg \
imagemagick \
samba-client \ samba-client \
supervisor \ supervisor \
# libreoffice \ # libreoffice \

View file

@ -5,6 +5,7 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
ffmpeg \ ffmpeg \
libmagickcore-6.q16-3-extra \
smbclient \ smbclient \
supervisor \ supervisor \
# libreoffice \ # libreoffice \