Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NextCloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
NextCloud
Compare revisions
b3ad003207af0aea007ddd6af2a4654ea753ad89 to 0f3a36aee03d4e159391412028af3b4d42fc6d28
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ansible/roles/nextcloud
Select target project
No results found
0f3a36aee03d4e159391412028af3b4d42fc6d28
Select Git revision
Branches
main
1 result
Swap
Target
ansible/roles/nextcloud
Select target project
ansible/roles/nextcloud
1 result
b3ad003207af0aea007ddd6af2a4654ea753ad89
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Update to 29.0.7
· 592d5825
jurgenhaas
authored
7 months ago
592d5825
Bug fixes
· 0f3a36ae
jurgenhaas
authored
7 months ago
0f3a36ae
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
defaults/main.yml
+1
-1
1 addition, 1 deletion
defaults/main.yml
tasks/install.yml
+3
-1
3 additions, 1 deletion
tasks/install.yml
templates/docker-compose.yml
+2
-0
2 additions, 0 deletions
templates/docker-compose.yml
with
6 additions
and
2 deletions
defaults/main.yml
View file @
0f3a36ae
---
nextcloud_version
:
29.0.
6
nextcloud_version
:
29.0.
7
nextcloud_mode
:
apache
nextcloud_plugins
:
-
announcementcenter
...
...
This diff is collapsed.
Click to expand it.
tasks/install.yml
View file @
0f3a36ae
...
...
@@ -48,7 +48,9 @@
application_remote_repo
:
'
{{
nextcloud.borg_repo
}}'
application_root
:
'
{{
dataRoot
}}.backup'
application_backup_source
:
'
{{
dataRoot
}}'
when
:
nextcloud_mode == 'docker' and nextcloud.borg_repo is defined
when
:
nextcloud_mode == 'docker' and nextcloud.borg_repo is defined and borg_passphrase is defined
tags
:
-
deploy
-
name
:
Enable Maintenance Mode
command
:
'
{{
php_command
}}
./occ
maintenance:mode
--on
--no-interaction
--no-warnings'
...
...
This diff is collapsed.
Click to expand it.
templates/docker-compose.yml
View file @
0f3a36ae
...
...
@@ -119,7 +119,9 @@ services:
-
/etc/timezone:/etc/timezone:ro
-
/etc/localtime:/etc/localtime:ro
{
%
if docker_compose_borgmatic_service is defined %
}
borgmatic
:
{{
docker_compose_borgmatic_service
}}
{
%
endif %
}
{
%
if nextcloud.turn is defined %
}
coturn
:
...
...
This diff is collapsed.
Click to expand it.