r/minio: Do not pull images automatically

We don't want `podman` pulling a new container image and updating
without our concent.  The image will already be there on the first
start, since we pulled it in an Ansible task.
unifi-restore
Dustin 2025-07-02 09:22:04 -05:00
parent 5edfbf2408
commit f3c432dbff
1 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
[Unit]
Description=MinIO Object Storage
Wants=network-online.target
After=network-online.target
Wants=network.target
After=network.target
RequiresMountsFor={{ minio_storage_path }}
[Container]
Image={{ minio_container_image }}:{{ minio_version }}
Pull=never
Exec=server {% if minio_address|d %}--address {{ minio_address }} {% endif %}/data --certs-dir /certs
User=224
Group=224