use fully qualified registry names

This commit is contained in:
2025-11-07 09:56:24 +01:00
parent 232594af8e
commit d6a6cff4a9
3 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
---
version: '3.8'
services:
portainer:
image: "{{ portainer_image }}"
container_name: "{{ portainer_name }}"
ports:
- "{{ portainer_edge_agent_port }}:8000"
- "{{ portainer_legacy_port }}:9000"
- "{{ portainer_web_port }}:9443"
volumes:
- "/var/run/podman/podman.sock:/var/run/docker.sock"
- "{{ portainer_data_path }}:/data"
restart: always
portainer-agent:
image: "{{ portainer_agent_image }}"
container_name: "{{ portainer_agent_name }}"
ports:
- "{{ portainer_agent_port }}:9001"
volumes:
- "/var/run/podman/podman.sock:/var/run/docker.sock"
- "{{ podman_data_mount_point }}:/var/lib/containers"
restart: always