migrate frigate
All checks were successful
Deploy Containers / Prepare (push) Successful in 16s

This commit is contained in:
2025-11-21 21:18:54 -05:00
parent 70fa7c77a8
commit 390a571fa4
2 changed files with 10 additions and 18 deletions

View File

@@ -47,3 +47,4 @@
healthcheck: "{{ healthcheck | default(omit) }}" healthcheck: "{{ healthcheck | default(omit) }}"
devices: "{{ devices | default(omit) }}" devices: "{{ devices | default(omit) }}"
mounts: "{{ mounts | default(omit) }}" mounts: "{{ mounts | default(omit) }}"
privileged: "{{ privileged | default(omit) }}"

View File

@@ -1,24 +1,15 @@
--- ---
- name: Create folder structure - name: Deploy Frigate
file: include_role:
path: "{{ item }}" name: docker
state: directory vars:
with_items: name: frigate
directories:
- "{{ data_dir }}/frigate" - "{{ data_dir }}/frigate"
image:
- name: Pull latest Frigate Docker Image
docker_image:
name: ghcr.io/blakeblackshear/frigate name: ghcr.io/blakeblackshear/frigate
tag: stable tag: stable
source: pull
- name: Deploy Frigate Docker Container
docker_container:
name: frigate
image: ghcr.io/blakeblackshear/frigate:stable
recreate: true
privileged: true privileged: true
restart_policy: unless-stopped
published_ports: published_ports:
- "5000:5000" - "5000:5000"
- "8555:8555/tcp" - "8555:8555/tcp"