Files
Personal-Rancher-Catalog/templates/Redis/0/docker-compose.yml
2019-06-13 21:20:50 -04:00

28 lines
883 B
YAML

version: '2'
services:
redis:
image: redis:${IMAGE_TAG}
dns: # Using Cloudflare DNS
- 1.1.1.1
- 1.0.0.1
- 2606:4700:4700::1111
- 2606:4700:4700::1001
labels:
io.rancher.container.pull_image: always
{{- if .Values.HOST_LABEL}}
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
{{- end}}
traefik.enable: false
restart: on-failure
stdin_open: true
tty: true
volumes:
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
{{- if .Values.DATA_DIR}}
{{- if eq .Values.CUSTOM_CONF "true"}}
- /Persistent/${DATA_DIR}/Configuration/redis.conf:/usr/local/etc/redis/redis.conf
{{- end}}
- /Persistent/${DATA_DIR}/Data:/data
{{- end}}