mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
Add procps to smb examples (closes #557)
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
parent
d5ecc2149f
commit
23b1488788
6 changed files with 6 additions and 3 deletions
|
@ -6,6 +6,7 @@ RUN set -ex; \
|
||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
libmagickcore-6.q16-3-extra \
|
libmagickcore-6.q16-3-extra \
|
||||||
|
procps \
|
||||||
smbclient \
|
smbclient \
|
||||||
supervisor \
|
supervisor \
|
||||||
# libreoffice \
|
# libreoffice \
|
||||||
|
|
|
@ -5,6 +5,7 @@ RUN set -ex; \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
|
procps \
|
||||||
samba-client \
|
samba-client \
|
||||||
supervisor \
|
supervisor \
|
||||||
# libreoffice \
|
# libreoffice \
|
||||||
|
|
|
@ -6,6 +6,7 @@ RUN set -ex; \
|
||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
libmagickcore-6.q16-3-extra \
|
libmagickcore-6.q16-3-extra \
|
||||||
|
procps \
|
||||||
smbclient \
|
smbclient \
|
||||||
supervisor \
|
supervisor \
|
||||||
# libreoffice \
|
# libreoffice \
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
FROM nextcloud:apache
|
FROM nextcloud:apache
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y smbclient && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y procps smbclient && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
FROM nextcloud:fpm-alpine
|
FROM nextcloud:fpm-alpine
|
||||||
|
|
||||||
RUN apk add --no-cache samba-client
|
RUN apk add --no-cache procps samba-client
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
FROM nextcloud:fpm
|
FROM nextcloud:fpm
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y smbclient && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y procps smbclient && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
Loading…
Reference in a new issue