-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c60a45
commit b79a41b
Showing
2 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
docker run -d --name nextcloud-container --rm --publish 80:80 --publish 8080:8080 --publish 8443:8443 nextcloud:stable | ||
wait 6 | ||
docker exec --user www-data -it nextcloud-container php occ maintenance:install --admin-user=admin --admin-pass= | ||
make build | ||
docker exec --user www-data -it nextcloud-container mkdir apps/gdatavaas | ||
docker cp ./ nextcloud-container:/var/www/html/apps/gdatavaas | ||
docker exec --user www-data -it nextcloud-container php occ app:update --all | ||
docker exec --user www-data -it nextcloud-container php occ app:enable gdatavaas | ||
|
||
docker exec --user www-data -it nextcloud-container php occ config:app:set gdatavaas username --value=vaas-integration-test | ||
|
||
docker exec --user www-data -it nextcloud-container php cron.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters