18 lines
233 B
Bash
Executable File
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"
|