ansible/playbooks/tasks/web/nextcloud.yml

34 lines
1.4 KiB
YAML
Raw Normal View History

# vim:ft=ansible:
- name: docker deploy nextcloud
docker_container:
name: nextcloud
2023-08-15 08:45:48 -05:00
image: nextcloud:27
# The entrypoint workaround is for this issue:
#
# https://github.com/nextcloud/docker/issues/1414
#
# This installs imagemagick to allow for SVG support and to clear the last
# setup warning in the application.
# It can be safely removed upon closure of this issue. I'm just doing it to
# make the big bad triangle go away.
entrypoint: /bin/sh
command: -c "apt-get update; apt-get install -y libmagickcore-6.q16-6-extra; /entrypoint.sh apache2-foreground"
env:
PHP_UPLOAD_LIMIT: 1024M
networks:
- name: web
aliases: [ "nextcloud" ]
volumes:
- /data/nextcloud/custom_apps:/var/www/html/custom_apps
- /data/nextcloud/config:/var/www/html/config
- /data/nextcloud/themes:/var/www/html/themes
2023-02-04 16:54:48 -06:00
- /data/nextcloud/data:/var/www/html/data
- /data/shared:/shared
tags: [ docker, nextcloud ]
2021-08-29 23:55:56 -05:00
- name: assure nextcloud cron cronjob
2022-06-16 23:45:29 -05:00
ansible.builtin.cron: user=root name=nextcloud minute=*/5 job="docker exec --user www-data nextcloud php -f /var/www/html/cron.php"
tags: [ docker, nextcloud, cron ]
2021-08-29 23:55:56 -05:00
- name: assure nextcloud update cronjob
2022-06-16 23:45:29 -05:00
ansible.builtin.cron: user=root name=nextcloud-update minute=*/30 job="docker exec --user www-data nextcloud php occ app:update --all"
2021-08-29 23:55:56 -05:00
tags: [ docker, nextcloud, cron ]