moving docker images around using ssh and pipe
how to move docker images around using ssh and pipe
from local to remote
docker save alpine:latest | ssh remote-host "cat - | docker import - alpine:latest"from remote to local
docker import - getmeili/meilisearch < <(ssh remote-host docker save getmeili/meilisearch)from remote to another remote (by help of a local)
PreviousCannot connect to the Docker daemon at unix:///var/run/docker.sockNextHow can I make docker-compose pull images using a socks5 proxy?
Last updated