Add curl in ci image: adjust the registry name to the public instance

This commit is contained in:
phil 2024-12-27 05:34:29 +01:00
parent e65b334271
commit 65b2f9c0a8
3 changed files with 16 additions and 15 deletions

View file

@ -5,14 +5,15 @@
force: false
force_rm: false
cache: false
registry: tiptop:5000
registry: code.philo.ydns.eu
organisation: philorg
tasks:
- name: Using the variables
ansible.builtin.debug:
var: force_rm
- name: Build the base image
- name: Build the base image (trixie_python)
containers.podman.podman_image:
name: trixie_python
state: build
@ -25,7 +26,7 @@
file: Containerfile.trixie_python
push: true
push_args:
dest: "{{ registry }}/trixie_python"
dest: "{{ registry }}/{{ organisation }}/trixie_python"
- name: Build the image for ci
containers.podman.podman_image:
@ -40,4 +41,4 @@
file: Containerfile.ci
push: true
push_args:
dest: "{{ registry }}/python-ci"
dest: "{{ registry }}/{{ organisation }}/python-ci"