initial commit

Este commit está contenido en:
ale
2024-10-03 01:47:38 +02:00
commit 72d18ac6c0
Se han modificado 25 ficheros con 596 adiciones y 0 borrados

Ver fichero

@@ -0,0 +1,13 @@
#!/bin/bash
git clone https://github.com/vieux/docker-volume-sshfs
cd docker-volume-sshfs/
docker build -t rootfsimage .
cd ..
mkdir -p docker-volume-sshfs/rootfs
id=$(docker create rootfsimage true)
sudo docker export "$id" | sudo tar -x -C docker-volume-sshfs/rootfs
docker rm -vf "$id"
docker rmi rootfsimage
sudo docker plugin create vieux/sshfs docker-volume-sshfs/
docker plugin enable vieux/sshfs:latest
docker plugin ls