Created
September 3, 2025 00:41
-
-
Save perseoq/e8d901e268c94ca016c2047b62cab9bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| IMAGES=( | |
| "docker.io/library/php:latest" | |
| "docker.io/library/node:latest" | |
| "docker.io/valkey/valkey:latest" | |
| "docker.io/library/rust:latest" | |
| "docker.io/library/mongo:latest" | |
| "docker.io/library/python:3.13" | |
| "docker.io/library/postgres:latest" | |
| "docker.io/library/nginx:latest" | |
| "docker.io/grafana/grafana:latest" | |
| "docker.io/library/httpd:latest" | |
| "docker.io/library/python:3.12" | |
| "docker.io/library/tomcat:latest" | |
| "docker.io/library/cassandra:latest" | |
| "docker.io/library/rabbitmq:latest" | |
| "docker.io/library/ubuntu:noble" | |
| "docker.io/library/ubuntu:jammy" | |
| "docker.io/library/influxdb:latest" | |
| "docker.io/library/mysql:latest" | |
| "docker.io/library/alpine:latest" | |
| "docker.io/library/kong:latest" | |
| "docker.io/library/couchdb:latest" | |
| "docker.io/library/registry:latest" | |
| "docker.io/apache/kafka:latest" | |
| "quay.io/podman/hello:latest" | |
| "docker.io/library/rethinkdb:latest" | |
| "docker.io/library/openjdk:21" | |
| ) | |
| echo "==> Descargando todas las imágenes con Podman..." | |
| for img in "${IMAGES[@]}"; do | |
| echo ">>> Pulling $img" | |
| podman pull "$img" | |
| done | |
| echo "✅ Todas las imágenes fueron descargadas con éxito." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment