Namespace
linuxserver
Image / Tag
nextcloud:arm32v7-25.0.2-ls216
Content Digest
sha256:16c034cba6a08b1e5c2047d69c5304a6cb57fa211165b6cfaac5b3afc5316e17
Details
Created

2023-01-08 15:30:44 UTC

Size

236 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- 25.0.2-ls216 Build-date:- 2023-01-08T09:28:17-06:00
  • maintainer
    aptalca
  • org.opencontainers.image.authors
    linuxserver.io
  • org.opencontainers.image.created
    2023-01-08T09:28:17-06:00
  • org.opencontainers.image.description
    [Nextcloud](https://nextcloud.com/) gives you access to all your files wherever you are. Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices. Through Nextcloud you also access, sync and share your existing data on that FTP drive at the office, a Dropbox or a NAS you have at home.
  • org.opencontainers.image.documentation
    https://docs.linuxserver.io/images/docker-nextcloud
  • org.opencontainers.image.licenses
    GPL-3.0-only
  • org.opencontainers.image.ref.name
    d5dad083440df10cccd639727be8fa610adf0894
  • org.opencontainers.image.revision
    d5dad083440df10cccd639727be8fa610adf0894
  • org.opencontainers.image.source
    https://github.com/linuxserver/docker-nextcloud
  • org.opencontainers.image.title
    Nextcloud
  • org.opencontainers.image.url
    https://github.com/linuxserver/docker-nextcloud/packages
  • org.opencontainers.image.vendor
    linuxserver.io
  • org.opencontainers.image.version
    25.0.2-ls216

Environment
HOME

/root

LD_PRELOAD

/usr/lib/preloadable_libiconv.so

NEXTCLOUD_PATH

/config/www/nextcloud

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PS1

$(whoami)@$(hostname):$(pwd)\$

S6_CMD_WAIT_FOR_SERVICES_MAXTIME

0

TERM

xterm


Layers

[#000] sha256:0fd044716f34e4d17d97e61bc9721c4b2953c92fdf8b58a0c8eb42b8f87db0ce - 2.17% (5.12 MB)

[#001] sha256:7b3ee6576fc27c357e8a7e1bcdb4c56f95660ae17488669cd154db5fedc623f3 - 2.05% (4.85 MB)

[#002] sha256:e07f77e2073f3ee37df4cfae745f1e4330d38d8a7b9ccbb4239e8f22f7f3d649 - 0.0% (5.93 KB)

[#003] sha256:7c0fe83fe33f82bacd116d36b85c7bd67f8336418c852357b42f539469ac2191 - 4.76% (11.2 MB)

[#004] sha256:8c0ea046c14dee4510f6f5c4c656ae8d14c29549c34f780c035655f8a5113bbc - 0.0% (6.47 KB)

[#005] sha256:31bcfa799378704268260ad9df807de9b9169beae7b698d7d7b48956f702152d - 91.02% (215 MB)

[#006] sha256:9223033d64e47e589d86e4cb314cb559270d216348516b0853799321266461eb - 0.0% (4.27 KB)


History
2022-12-27 01:29:50 -0500 (buildkit.dockerfile.v0)

COPY /root-out/ / # buildkit

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

ARG BUILD_DATE

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

ARG VERSION

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- 3a58d774-ls36 Build-date:- 2022-12-27T07:28:07+01:00

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

LABEL maintainer=TheLamer

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

RUN |2 BUILD_DATE=2022-12-27T07:28:07+01:00 VERSION=3a58d774-ls36 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache bash ca-certificates coreutils curl procps shadow tzdata && echo "**** create abc user and make our folders ****" && groupmod -g 1000 users && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults && echo "**** add qemu ****" && curl -o /usr/bin/qemu-arm-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static" && chmod +x /usr/bin/qemu-arm-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-12-27 01:29:55 -0500 (buildkit.dockerfile.v0)

ENTRYPOINT ["/init"]

2022-12-29 05:56:22 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php8 php8-fileinfo php8-fpm php8-json php8-mbstring php8-openssl php8-session php8-simplexml php8-xml php8-xmlwriter php8-zlib && echo "**** configure nginx ****" && echo 'fastcgi_param HTTP_PROXY ""; # https://httpoxy.org/' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param PATH_INFO $fastcgi_path_info; # http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_split_path_info' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/#connecting-nginx-to-php-fpm' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SERVER_NAME $host; # Send HTTP_HOST as SERVER_NAME. If HTTP_HOST is blank, send the value of server_name from nginx (default is `_`)' >> /etc/nginx/fastcgi_params && rm -f /etc/nginx/http.d/default.conf && echo "**** configure php ****" && ln -s /usr/bin/php8 /usr/bin/php && sed -i "s#;error_log = log/php8/error.log.*#error_log = /config/log/php/error.log#g" /etc/php8/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php8/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php8/php-fpm.d/www.conf && echo "**** fix logrotate ****" && sed -i "s#/var/log/messages {}.*# #g" /etc/logrotate.conf && sed -i 's#/usr/sbin/logrotate /etc/logrotate.conf#/usr/sbin/logrotate /etc/logrotate.conf -s /config/log/logrotate.status#g' /etc/periodic/daily/logrotate # buildkit

2022-12-29 05:56:22 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-12-29 05:56:22 UTC (buildkit.dockerfile.v0)

EXPOSE map[443/tcp:{} 80/tcp:{}]

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

ARG BUILD_DATE

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

ARG VERSION

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

ARG NEXTCLOUD_RELEASE

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- 25.0.2-ls216 Build-date:- 2023-01-08T09:28:17-06:00

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

LABEL maintainer=aptalca

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

ENV NEXTCLOUD_PATH=/config/www/nextcloud LD_PRELOAD=/usr/lib/preloadable_libiconv.so

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

RUN |3 BUILD_DATE=2023-01-08T09:28:17-06:00 VERSION=25.0.2-ls216 NEXTCLOUD_RELEASE=25.0.2 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache --upgrade curl ffmpeg gnu-libiconv imagemagick libxml2 php8-apcu php8-bcmath php8-bz2 php8-ctype php8-curl php8-dom php8-exif php8-fileinfo php8-ftp php8-gd php8-gmp php8-iconv php8-imap php8-intl php8-ldap php8-mbstring php8-opcache php8-openssl php8-pcntl php8-pdo_mysql php8-pdo_pgsql php8-pdo_sqlite php8-pecl-imagick php8-pecl-mcrypt php8-pecl-memcached php8-pgsql php8-phar php8-posix php8-redis php8-session php8-simplexml php8-sodium php8-sqlite3 php8-xml php8-xmlreader php8-xmlwriter php8-zip samba-client sudo tar unzip && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing php8-pecl-smbclient && echo "**** configure php and nginx for nextcloud ****" && echo 'apc.enable_cli=1' >> /etc/php8/conf.d/apcu.ini && sed -i -e 's/;opcache.enable.*=.*/opcache.enable=1/g' -e 's/;opcache.interned_strings_buffer.*=.*/opcache.interned_strings_buffer=16/g' -e 's/;opcache.max_accelerated_files.*=.*/opcache.max_accelerated_files=10000/g' -e 's/;opcache.memory_consumption.*=.*/opcache.memory_consumption=128/g' -e 's/;opcache.save_comments.*=.*/opcache.save_comments=1/g' -e 's/;opcache.revalidate_freq.*=.*/opcache.revalidate_freq=1/g' -e 's/;always_populate_raw_post_data.*=.*/always_populate_raw_post_data=-1/g' -e 's/memory_limit.*=.*128M/memory_limit=512M/g' -e 's/max_execution_time.*=.*30/max_execution_time=120/g' -e 's/upload_max_filesize.*=.*2M/upload_max_filesize=1024M/g' -e 's/post_max_size.*=.*8M/post_max_size=1024M/g' -e 's/output_buffering.*=.*/output_buffering=0/g' /etc/php8/php.ini && sed -i '/opcache.enable=1/a opcache.enable_cli=1' /etc/php8/php.ini && echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php8/php-fpm.conf && echo "**** set version tag ****" && if [ -z ${NEXTCLOUD_RELEASE+x} ]; then NEXTCLOUD_RELEASE=$(curl -sX GET https://api.github.com/repos/nextcloud/server/releases/latest | awk '/tag_name/{print $4;exit}' FS='[""]' | sed 's|^v||'); fi && echo "**** download nextcloud ****" && curl -o /app/nextcloud.tar.bz2 -L https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_RELEASE}.tar.bz2 && echo "**** test tarball ****" && tar xvf /app/nextcloud.tar.bz2 -C /tmp && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

EXPOSE map[443/tcp:{} 80/tcp:{}]

2023-01-08 15:30:44 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete