pulse/tasks/pulse.yaml
Renovate Bot fa5133f4fb
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore(package): update cr.simoncor.net/dockerhub/rcourtman/pulse docker tag to v5 (#2)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| cr.simoncor.net/dockerhub/rcourtman/pulse | major | `4.36.2` → `5.1.31` |

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Reviewed-on: #2
2026-05-22 08:44:38 +02:00

51 lines
987 B
YAML

---
# create pulse data directory
- name: "create pulse data directory"
ansible.builtin.file:
path: "/mnt/pulse/data"
state: "directory"
owner: "root"
group: "root"
mode: "0775"
# docker pull pulse
- name: "run pulse"
community.docker.docker_container:
# container_default_behavior
auto_remove: "no"
container_default_behavior: "no_defaults"
detach: "yes"
init: "no"
interactive: "no"
log_driver: "json-file"
log_options:
max-size: "5m"
max-file: "3"
memory: "0"
paused: "no"
privileged: "no"
pull: "always"
read_only: "no"
state: "started"
tty: "no"
# pulse
name: "pulse"
image: "cr.simoncor.net/dockerhub/rcourtman/pulse:5.1.31"
image_name_mismatch: "recreate"
network_mode: "host"
restart_policy: "unless-stopped"
volumes:
- "/mnt/pulse/data:/data"
env:
# pulse
CONNECTION_TIMEOUT: "60"
# global
TZ: "{{ timezone }}"