10 lines
370 B
Bash
Executable File
10 lines
370 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# assuming polls is bind mounted in container as /root/polls
|
|
# see runpodman.sh
|
|
|
|
# podman exec -it nextcloud_local rsync --chown www-data:www-data -av /root/polls/ /var/www/html/custom_apps/polls --exclude .git --exclude node_modules
|
|
|
|
podman exec -it nextcloud_local tar -xzf /root/polls/build/artifacts/appstore/polls.tar.gz -C /var/www/html/custom_apps/
|
|
|