ansible-nas/tasks/nextcloud.yml
animeai ce21999f46 Map all ports as variables in all.yml.dist
NOTE: The majority of traefik ports were totally broken and would never have worked. It should be the external port there, not the internal container port!.

Port conflicts were fixed.
2020-01-05 21:47:40 +00:00

48 lines
No EOL
1.4 KiB
YAML

---
- name: Create Nextcloud directories
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ nextcloud_data_directory }}/nextcloud"
- "{{ nextcloud_data_directory }}/mysql"
- name: Nextcloud Mysql Docker Container
docker_container:
name: nextcloud-mysql
image: mysql:5.7
pull: true
volumes:
- "{{ nextcloud_data_directory }}/mysql:/var/lib/mysql:rw"
env:
MYSQL_DATABASE: "nextcloud"
MYSQL_USER: "nextcloud-user"
MYSQL_PASSWORD: "nextcloud-pass"
MYSQL_ROOT_PASSWORD: "nextcloud-secret"
restart_policy: unless-stopped
memory: 1g
- name: Nextcloud Docker Container
docker_container:
name: nextcloud
image: nextcloud:14
pull: true
links:
- nextcloud-mysql:mysql
volumes:
- "{{ nextcloud_data_directory }}/nextcloud:/var/www/html:rw"
ports:
- "{{ nextcloud_port }}:80"
env:
MYSQL_HOST: "mysql"
MYSQL_DATABASE: "nextcloud"
MYSQL_USER: "nextcloud-user"
MYSQL_PASSWORD: "nextcloud-pass"
NEXTCLOUD_TRUSTED_DOMAINS: "nextcloud.{{ ansible_nas_domain }}"
restart_policy: unless-stopped
memory: 1g
labels:
traefik.backend: "nextcloud"
traefik.frontend.rule: "Host:nextcloud.{{ ansible_nas_domain }}"
traefik.enable: "{{ nextcloud_available_externally }}"
traefik.port: "{{ nextcloud_port }}"