bastjan / saveomat

`docker save` with ease. Over the network.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Save-O-Mat

gh actions codecov Docker Pulls

docker save with ease. With a simple HTTP API.

docker run -v /var/run/docker.sock:/var/run/docker.sock -p 8080:8080 bastjan/saveomat

cat <<EOF > images.txt
alpine
busybox
EOF
curl -fF "images.txt=@images.txt" localhost:8080/tar > images.tar
# OR
wget 'localhost:8080/tar?image=hello-world&image=busybox' -O images.tar

FAQ

Hosting Under a Subpath

The BASE_URL environment variable allows hosting under a subpath.

If the value of BASE_URL is /saveomat the image request becomes localhost:8080/saveomat/tar.

Authentication

To pull private repositories or images an optional config.json can be provided. The file should be in the docker client config format and can usually be found under $HOME/.docker/config.json.

⚠️ While private images are not accessible without authentication, they are cached on the server.

Authentication only works for POST requests.

curl -fF "images.txt=@images.txt" -F "config.json=@$HOME/.docker/config.json" http://localhost:8080/tar > images.tar

About

`docker save` with ease. Over the network.

License:MIT License


Languages

Language:Go 77.0%Language:HTML 20.2%Language:CSS 1.8%Language:Dockerfile 1.0%