Files
phlippe lhardy e985f2e430 setup script for nextcloud dev env
checked on Debian 13 (Trixie)
( not Debian 12 )
2025-07-04 12:25:38 +02:00

18 lines
233 B
Bash
Executable File

#!/bin/bash
sudo apt install podman
gitclone=git@github.com:nextcloud/docker.git
if [[ ! -d podman ]]
then
git clone $gitclone podman
fi
cd podman
./update.sh
cd 31/apache
podman build .
echo "See README.md if build failed"