410a915a8a
This paves the way for installing other roles into `roles/galaxy` using `ansible-galaxy`, similar to how it's done in: - https://github.com/spantaleev/gitea-docker-ansible-deploy - https://github.com/spantaleev/nextcloud-docker-ansible-deploy In the near future, we'll be removing a lot of the shared role code from here and using upstream roles for it. Some of the core `matrix-*` roles have already been extracted out into other reusable roles: - https://github.com/devture/com.devture.ansible.role.postgres - https://github.com/devture/com.devture.ansible.role.systemd_docker_base - https://github.com/devture/com.devture.ansible.role.timesync - https://github.com/devture/com.devture.ansible.role.vars_preserver - https://github.com/devture/com.devture.ansible.role.playbook_runtime_messages - https://github.com/devture/com.devture.ansible.role.playbook_help We just need to migrate to those.
38 lines
1.1 KiB
Django/Jinja
38 lines
1.1 KiB
Django/Jinja
#jinja2: lstrip_blocks: "True"
|
|
[Unit]
|
|
Description=Matrix Redis server
|
|
After=docker.service
|
|
Requires=docker.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStartPre=-/usr/bin/docker stop matrix-redis
|
|
ExecStartPre=-/usr/bin/docker rm matrix-redis
|
|
|
|
ExecStart=/usr/bin/docker run --rm --name matrix-redis \
|
|
--log-driver=none \
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
--cap-drop=ALL \
|
|
--read-only \
|
|
--tmpfs=/tmp:rw,noexec,nosuid,size=100m \
|
|
--network={{ matrix_docker_network }} \
|
|
{% if matrix_redis_container_redis_bind_port %}
|
|
-p {{ matrix_redis_container_redis_bind_port }}:6379 \
|
|
{% endif %}
|
|
--mount type=bind,src={{ matrix_redis_base_path }}/redis.conf,dst=/usr/local/etc/redis/redis.conf,ro \
|
|
--mount type=bind,src={{ matrix_redis_data_path }},dst=/data \
|
|
{% for arg in matrix_redis_container_extra_arguments %}
|
|
{{ arg }} \
|
|
{% endfor %}
|
|
{{ matrix_redis_docker_image_to_use }} \
|
|
redis-server /usr/local/etc/redis/redis.conf
|
|
|
|
ExecStop=-/usr/bin/docker stop matrix-redis
|
|
ExecStop=-/usr/bin/docker rm matrix-redis
|
|
Restart=always
|
|
RestartSec=30
|
|
SyslogIdentifier=matrix-redis
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|