From 6593a274c2c6ee4ebf2dc2c7516345e110890e80 Mon Sep 17 00:00:00 2001 From: TiynGER Date: Tue, 16 Mar 2021 15:35:22 +0100 Subject: [PATCH] removed onedrive duplicate from windows10 folder --- wiki/windows10/onedrive.md | 39 -------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 wiki/windows10/onedrive.md diff --git a/wiki/windows10/onedrive.md b/wiki/windows10/onedrive.md deleted file mode 100644 index dca68b0..0000000 --- a/wiki/windows10/onedrive.md +++ /dev/null @@ -1,39 +0,0 @@ -# Onedrive - -## Setup with Docker - -The official container and documentation was made by [oznu](https://hub.docker.com/r/oznu/onedrive). - -### Environment-variables - -Set the following variables with the -e tag. - -| Name | Usage | Default | -| ------ | ------- | ------- | -| `PUID` | UserID | | -| `PGID` | GroupID | | - -### Volumes - -Set the following volumes with the -v tag. - -| Volume-Name | Container mount | Description | -| ----------------- | --------------- | ----------------------------------------------- | -| `onedrive_config` | `/config` | configuration storage for the server connection | -| `onedrive_doc` | `/documents` | storage for downloaded documents | - -### Rebuild - -```shell -#!/bin/sh -docker stop onedrive -docker rm onedrive -docker pull oznu/onedrive:latest -docker run --name onedrive \ - --restart unless-stopped \ - -v onedrive_config:/config \ - -v onedrive_doc:/documents \ - -e PUID=$(id -u) \ - -e PGID=$(id -g) \ - -d oznu/onedrive:latest -```