Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 427 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 427 Bytes

Redis role

Deploy Redis container.

Usage

Configure the role.

# https://hub.docker.com/_/redis
redis_image: redis:6.2.3
redis_description: cache for nextcloud # default: Redis
redis_hostname: redis01
redis_volume_name: redis_data01 # default: "{{ redis_hostname }}"
redis_password: # default: "{{ vault_redis_password }}"

And include it in your playbook.

- hosts: redis
  roles:
  - role: redis