Git Product home page Git Product logo

gdrivesyncpython's Introduction

How to start

Before start, we need to get key.json for a service account in google api:

https://developers.google.com/drive/api/quickstart/python

Docker compose

Environment

  • LOCAL_FOLDER_PATH --- path to folder to sync
  • AUTH_KEY_PATH --- path to key.json
  • REMOTE_FOLDER_NAME --- google drive folder name

Volumes

  • ./folder_sync:/app/folder_sync:ro --- path to folder to sync
  • ./auth:/app/auth:ro --- path to auth folder with key.json file
services:
  gdrivesync:
    #platform: linux/amd64
    build: .
    image: siegfriedschmidt/gdrivesync
    container_name: gdrivesync
    environment:
      - LOCAL_FOLDER_PATH=/app/folder_sync
      - AUTH_KEY_PATH=/app/auth/key.json
      - REMOTE_FOLDER_NAME=from_server
    volumes:
      - ./folder_sync:/app/folder_sync:ro
      - ./auth:/app/auth:ro

    restart: "unless-stopped"
$ docker compose up -d

Also metube integration

services:
  metube:
    image: ghcr.io/alexta69/metube
    container_name: metube
    ports:
      - "4534:8081"
    environment:
      STATE_DIR: /temp/metube
      TEMP_DIR: /temp
    volumes:
      - ./Music/MetubeMusic:/downloads
      - ./temp:/temp
    
    restart: unless-stopped

gdrivesyncpython's People

Contributors

siegfriedschmidt avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.