IT

Nextcloud mit Docker auf der Kommandzeile updaten

Spickzettel: Nextcloud über einen Dockercontainer auf der Kommandozeile Updaten: 1. Dockerfile erstellen (Version mit Postgresql, für Mysql bitte anpassen) FROM ubuntu:22.04 ENV DEBIAN_FRONTEND=noninteractive RUN apt update RUN apt install -y –no-install-recommends php8.1 RUN apt install -y ca-certificates RUN apt install -y sudo RUN apt install -y php8.1-cli RUN apt install -y php8.1-common RUN apt install -y php8.1-zip RUN apt install…

Continue Reading