setup script for nextcloud dev env

checked on Debian 13 (Trixie)
( not Debian 12 )
This commit is contained in:
phlippe lhardy
2025-07-04 12:25:38 +02:00
parent f2ff78fa86
commit e985f2e430
3 changed files with 14 additions and 4 deletions

View File

@@ -6,10 +6,12 @@ setup databse :
./setupdatabase.sh ./setupdatabase.sh
# not completed, done manualy ./setuppodman
# ./setuppodman.sh
# on ubuntu VOLUME creation failed ( podman 4.9.3 )
# comment out VOLUME var/www/html in 31/apache/Dockerfile # comment out VOLUME var/www/html in 31/apache/Dockerfile
# cd podman; ./update.sh; cd 31/apache; podman build .
./clonegit.sh
./runpodman.sh ./runpodman.sh

1
nextcloud_devenv/clonegit.sh Executable file
View File

@@ -0,0 +1 @@
git clone git@github.com:artlog/polls.git

View File

@@ -1,5 +1,7 @@
#!/bin/bash #!/bin/bash
sudo apt install podman
gitclone=git@github.com:nextcloud/docker.git gitclone=git@github.com:nextcloud/docker.git
if [[ ! -d podman ]] if [[ ! -d podman ]]
@@ -7,4 +9,9 @@ then
git clone $gitclone podman git clone $gitclone podman
fi fi
echo "Not completed see REAMDE.md hack" cd podman
./update.sh
cd 31/apache
podman build .
echo "See README.md if build failed"