Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruslanys/docker-yandex.disk
Yandex.Disk wrapped into Docker image
https://github.com/ruslanys/docker-yandex.disk
docker docker-image yandex-disk
Last synced: 11 days ago
JSON representation
Yandex.Disk wrapped into Docker image
- Host: GitHub
- URL: https://github.com/ruslanys/docker-yandex.disk
- Owner: ruslanys
- License: mit
- Created: 2018-09-04T11:26:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-22T19:19:18.000Z (7 months ago)
- Last Synced: 2024-10-10T13:34:39.477Z (28 days ago)
- Topics: docker, docker-image, yandex-disk
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/ruslanys/yandex.disk/
- Size: 1.95 KB
- Stars: 4
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Yandex.Disk Docker image
[![Docker Automated build](https://img.shields.io/docker/automated/ruslanys/yandex.disk.svg?style=flat-square&colorB=007EC6)](https://hub.docker.com/r/ruslanys/yandex.disk/) [![Docker Pulls](https://img.shields.io/docker/pulls/ruslanys/yandex.disk.svg?style=flat-square&colorB=007EC6)](https://hub.docker.com/r/ruslanys/yandex.disk/)
## How it works
1. Run container using interactive mode with mounted directory for configuration
1. Obtain OAuth token using your login and password
1. Stop container
1. Run container in daemon mode with mounted configuration directory which contains auth token## Setup mode
```
docker run --rm -it \
-v /opt/yandex.disk/config:/root/.config/yandex-disk \
-v /opt/yandex.disk/data:/root/Yandex.Disk \
ruslanys/yandex.disk setup
```## Daemon mode
```
docker run -d --name yandex.disk --restart always \
-v /opt/yandex.disk/config:/root/.config/yandex-disk \
-v /opt/yandex.disk/data:/root/Yandex.Disk \
ruslanys/yandex.disk
```