@ -24,18 +24,18 @@ matrix_postgres_backup_postgres_data_path: ""
matrix_postgres_backup_architecture : amd64
# matrix_postgres_ docker_image_suffix controls whether we use Alpine-based images (`-alpine`) or the normal Debian-based images.
# matrix_postgres_ backup_docker_image_distro controls whether we use Alpine-based images (`-alpine`) or the normal Debian-based images.
# Alpine-based Postgres images are smaller and we usually prefer them, but they don't work on ARM32 (tested on a Raspberry Pi 3 running Raspbian 10.7).
# On ARM32, `-alpine` images fail with the following error:
# > LOG: startup process (PID 37) was terminated by signal 11: Segmentation fault
matrix_postgres_backup_docker_image_ suffix: "{{ '- alpine' if matrix_postgres_backup_architecture in ['amd64', 'arm64'] else '' }}"
matrix_postgres_backup_docker_image_v9 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:9.6 {{ matrix_postgres_backup_docker_image_suffix }} "
matrix_postgres_backup_docker_image_v10 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:10 {{ matrix_postgres_backup_docker_image_suffix }} "
matrix_postgres_backup_docker_image_v11 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:11 {{ matrix_postgres_backup_docker_image_suffix }} "
matrix_postgres_backup_docker_image_v12 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:12 {{ matrix_postgres_backup_docker_image_suffix }} "
matrix_postgres_backup_docker_image_v13 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:13 {{ matrix_postgres_backup_docker_image_suffix }} "
matrix_postgres_backup_docker_image_v14 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:14 {{ matrix_postgres_backup_docker_image_suffix }} "
matrix_postgres_backup_docker_image_ distro: "{{ ' alpine' if matrix_postgres_backup_architecture in ['amd64', 'arm64'] else 'debian ' }}"
matrix_postgres_backup_docker_image_v9 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:9.6 -{{ matrix_postgres_backup_docker_image_distro }}-2aa03d1 "
matrix_postgres_backup_docker_image_v10 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:10 -{{ matrix_postgres_backup_docker_image_distro }}-2cf00a5 "
matrix_postgres_backup_docker_image_v11 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:11 -{{ matrix_postgres_backup_docker_image_distro }}-2cf00a5 "
matrix_postgres_backup_docker_image_v12 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:12 -{{ matrix_postgres_backup_docker_image_distro }}-2cf00a5 "
matrix_postgres_backup_docker_image_v13 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:13 -{{ matrix_postgres_backup_docker_image_distro }}-2cf00a5 "
matrix_postgres_backup_docker_image_v14 : "{{ matrix_container_global_registry_prefix }}prodrigestivill/postgres-backup-local:14 -{{ matrix_postgres_backup_docker_image_distro }}-2cf00a5 "
matrix_postgres_backup_docker_image_latest : "{{ matrix_postgres_backup_docker_image_v14 }}"
# This variable is assigned at runtime. Overriding its value has no effect.