initial commit

This commit is contained in:
2026-04-07 15:46:18 -04:00
commit bc1b1d1232
43 changed files with 1627 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM nextcloud:latest
# Install smbclient and required dependencies
RUN set -x && apt-get update \
# PHP Module smbclient
&& apt-get install -y smbclient libsmbclient-dev \
&& pecl install smbclient \
&& docker-php-ext-enable smbclient \
# ffmpeg
&& apt-get install -y ffmpeg \
&& apt-get clean \