Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arangogutierrez/grive
A Container implementation for the Google Drive Client
https://github.com/arangogutierrez/grive
Last synced: about 2 months ago
JSON representation
A Container implementation for the Google Drive Client
- Host: GitHub
- URL: https://github.com/arangogutierrez/grive
- Owner: ArangoGutierrez
- Created: 2017-01-26T19:05:43.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-08T16:54:23.000Z (over 7 years ago)
- Last Synced: 2024-10-29T18:49:52.475Z (3 months ago)
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Linux Container implementation of the grive client
## Singularity Drive
A Singularity imlementation for the Google Drive Client### Usage
Pealse refer to http://yourcmc.ru/wiki/Grive2#InstallationFor a first time Drive sync
```bash
$ sudo singularity create -s 1024 /some/path/grive.img
```
and```bash
$ sudo singularity bootstrap /some/path/grive.img grive.def
```
or
```bash
$ singularity pull --name "grive.img" shub://ArangoGutierrez/grive
```In your host
```bash
$ mkdir /home/MyGoogleDriveFoldeName
```
```bash
$ cd /home/MyGoogleDriveFoldeName
```
```bash
$ singularity run /some/path/grive.img -a
```After this, for Sync only
```bash
$ cd /home/MyGoogleDriveFoldeName
```
```bash
$ singularity run /some/path/grive.img
```
## Docker Drive
A Docker imlementation for the Google Drive Client### Usage
Pealse refer to http://yourcmc.ru/wiki/Grive2#InstallationFor a first time Drive sync
```bash
$ docker pull ashael/dockerdrive
```
or
```bash
$docker build Dockerfile (after git clone)
```
```bash
$ mkdir /home/MyGoogleDriveFoldeName
$ cd /home/MyGoogleDriveFoldeName
$ docker run -it -v $PWD:/home/grive -w /home/grive grive
```Then inside the Container
```bash
$ grive -a
```After this, for Sync only
```bash
$ docker run --rm -v $PWD:/home/grive -w /home/grive --name "Gdrive" grive grive
```