2020-07-10 01:53:07 +00:00
|
|
|
- name: Create Docker container bind mount directories
|
2020-07-07 21:21:04 +00:00
|
|
|
file:
|
2020-07-10 01:53:07 +00:00
|
|
|
path: ["{{ nextcloud_root }}",
|
|
|
|
"{{ nextcloud_dbroot }}"]
|
2020-07-07 21:21:04 +00:00
|
|
|
state: directory
|
|
|
|
|
2020-07-11 07:38:45 +00:00
|
|
|
- name: Create Nextcloud network
|
|
|
|
docker_network:
|
|
|
|
name: "{{ nextcloud_container }}"
|
|
|
|
|
2020-07-10 01:53:07 +00:00
|
|
|
- name: Start Nextcloud's database container
|
2020-07-02 05:35:01 +00:00
|
|
|
docker_container:
|
2020-07-10 01:53:07 +00:00
|
|
|
name: "{{ nextcloud_dbcontainer }}"
|
|
|
|
image: mariadb:{{ nextcloud_dbversion }}
|
2020-07-02 05:35:01 +00:00
|
|
|
restart_policy: always
|
2020-07-10 01:53:07 +00:00
|
|
|
volumes: "{{ nextcloud_dbroot }}:/var/lib/mysql"
|
2020-07-11 07:38:45 +00:00
|
|
|
networks_cli_compatible: true
|
|
|
|
networks:
|
|
|
|
- name: "{{ nextcloud_container }}"
|
2020-07-02 05:35:01 +00:00
|
|
|
env:
|
|
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "true"
|
|
|
|
MYSQL_DATABASE: "{{ nextcloud_dbname }}"
|
|
|
|
MYSQL_USER: "{{ nextcloud_dbuser }}"
|
|
|
|
MYSQL_PASSWORD: "{{ nextcloud_dbpass }}"
|
|
|
|
|
|
|
|
- name: Start Nextcloud container
|
|
|
|
docker_container:
|
2020-07-10 01:53:07 +00:00
|
|
|
name: "{{ nextcloud_container }}"
|
2020-07-02 05:35:01 +00:00
|
|
|
image: nextcloud:{{ nextcloud_version }}
|
|
|
|
restart_policy: always
|
2020-07-10 01:53:07 +00:00
|
|
|
volumes: "{{ nextcloud_root }}:/var/www/html"
|
2020-07-11 07:38:45 +00:00
|
|
|
networks_cli_compatible: true
|
|
|
|
networks:
|
|
|
|
- name: "{{ nextcloud_container }}"
|
|
|
|
- name: traefik
|
|
|
|
labels:
|
|
|
|
traefik.http.routers.nextcloud.rule: "Host(`{{ nextcloud_domain }}`)"
|
|
|
|
traefik.docker.network: traefik
|
|
|
|
traefik.enable: "true"
|
2020-07-02 05:35:01 +00:00
|
|
|
|
2020-07-07 21:21:04 +00:00
|
|
|
- name: Grab Nextcloud container information
|
|
|
|
docker_container_info:
|
2020-07-10 01:53:07 +00:00
|
|
|
name: "{{ nextcloud_container }}"
|
2020-07-07 21:21:04 +00:00
|
|
|
register: nextcloud_info
|
|
|
|
|
|
|
|
- name: Wait for Nextcloud to become available
|
|
|
|
wait_for:
|
2020-07-11 07:38:45 +00:00
|
|
|
host: "{{ nextcloud_info.container.NetworkSettings.Networks.traefik.IPAddress }}"
|
2020-07-07 21:21:04 +00:00
|
|
|
port: 80
|
|
|
|
|
|
|
|
- name: Check Nextcloud status
|
2020-07-10 01:53:07 +00:00
|
|
|
command: "docker exec --user www-data {{ nextcloud_container }}
|
2020-07-07 21:21:04 +00:00
|
|
|
php occ status"
|
|
|
|
register: nextcloud_status
|
|
|
|
args:
|
2020-07-10 01:53:07 +00:00
|
|
|
removes: "{{ nextcloud_root }}/config/CAN_INSTALL"
|
2020-07-07 21:21:04 +00:00
|
|
|
|
|
|
|
- name: Install Nextcloud
|
2020-07-10 01:53:07 +00:00
|
|
|
command: 'docker exec --user www-data {{ nextcloud_container }}
|
2020-07-07 21:21:04 +00:00
|
|
|
php occ maintenance:install
|
2020-07-09 04:09:48 +00:00
|
|
|
--database "mysql"
|
2020-07-10 01:53:07 +00:00
|
|
|
--database-host "{{ nextcloud_dbcontainer }}"
|
2020-07-09 04:09:48 +00:00
|
|
|
--database-name "{{ nextcloud_dbname }}"
|
|
|
|
--database-user "{{ nextcloud_dbuser }}"
|
|
|
|
--database-pass "{{ nextcloud_dbpass }}"
|
2020-07-07 21:21:04 +00:00
|
|
|
--admin-user "{{ nextcloud_admin }}"
|
|
|
|
--admin-pass "{{ nextcloud_pass }}"'
|
|
|
|
register: nextcloud_install
|
|
|
|
when:
|
|
|
|
- nextcloud_status.stdout[:26] == "Nextcloud is not installed"
|
|
|
|
- nextcloud_domain is defined
|
|
|
|
|
|
|
|
- name: Set Nextcloud's Trusted Domain
|
2020-07-10 01:53:07 +00:00
|
|
|
command: 'docker exec --user www-data {{ nextcloud_container }}
|
2020-07-07 21:21:04 +00:00
|
|
|
php occ config:system:set trusted_domains 0
|
|
|
|
--value="{{ nextcloud_domain }}"'
|
|
|
|
when: nextcloud_install.changed
|
|
|
|
|
|
|
|
- name: Preform Nextcloud database maintenance
|
2020-07-10 01:53:07 +00:00
|
|
|
command: "docker exec --user www-data {{ nextcloud_container }} {{ item }}"
|
2020-07-02 05:35:01 +00:00
|
|
|
loop:
|
2020-07-07 21:21:04 +00:00
|
|
|
- "php occ maintenance:mode --on"
|
|
|
|
- "php occ db:add-missing-indices"
|
|
|
|
- "php occ db:convert-filecache-bigint"
|
|
|
|
- "php occ maintenance:mode --off"
|
|
|
|
when: nextcloud_install.changed
|
2020-07-07 21:44:25 +00:00
|
|
|
|
|
|
|
- name: Remove Nextcloud's CAN_INSTALL file
|
|
|
|
file:
|
2020-07-10 01:53:07 +00:00
|
|
|
path: "{{ nextcloud_root }}/config/CAN_INSTALL"
|
2020-07-07 21:44:25 +00:00
|
|
|
state: absent
|