google-drive-ocamlfuse in a docker container designed for shared mounting on host
10K+
Docker image to mount a google drive with google-drive-ocamlfuse shared with host.
PUID: User ID to run google-drive-ocamlfusePGID: Group ID to run google-drive-ocamlfuseMOUNT_OPTS: Additional mount options (user_allow_other is configured in /etc/fuse.conf)CLIENT_ID: Google oAuth client ID without trailing .apps.googleusercontent.comCLIENT_SECRET: Google oAuth client secretVERIFICATION_CODE: Google oAuth verification code you will need to obtain manually (and prior to launching the container) from accepting the prompts at the following URL with client_id substituted:
https://accounts.google.com/o/oauth2/auth?client_id=${CLIENT_ID}.apps.googleusercontent.com&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdrive&response_type=code&access_type=offline&approval_prompt=forceTEAM_DRIVE_ID: (Optional) Team Drive Id to access a team folder instead of your private folder. The id can be found in the URL if you open the team folder in your browser (e.g. https://drive.google.com/drive/u/1/folders/${TEAM_DRIVE_ID})shared mountflag or un-configured and defaults to shared.Without this the fuse mount will not propagate back to the host.
# Ensure docker daemon uses shared mount flags
sed -i 's/MountFlags=\(private\|slave\)/MountFlags=shared/' /etc/systemd/system/docker.service
systemctl daemon-reload
systemctl restart docker.service
# Specify the mount points propagation as shared (execute as root)
mount --bind /mnt/drive /mnt/drive
mount --make-shared /mnt/drive
docker run -d \
-e CLIENT_ID='my-client-id' \
-e CLIENT_SECRET='my-client-secret' \
-e VERIFICATION_CODE='my-verification-code' \
--security-opt apparmor:unconfined \
--cap-add mknod \
--cap-add sys_admin \
--device=/dev/fuse \
-v /mnt/drive:/mnt/gdrive:shared \
mitcdh/google-drive-ocamlfuse
/mnt/gdrive: Google Drive Fuse mount directory inside containerContent type
Image
Digest
Size
72.8 MB
Last updated
over 5 years ago
docker pull mitcdh/google-drive-ocamlfuse