This commit is contained in:
ducoterra
2020-03-15 17:15:07 -04:00
commit 32fdbe0321
6 changed files with 142 additions and 0 deletions

20
README.md Normal file
View File

@@ -0,0 +1,20 @@
# Jellyfin
## Setup
```bash
docker pull jellyfin/jellyfin:latest
mkdir -p /srv/jellyfin/{config,cache}
docker run -d -v /srv/jellyfin/config:/config -v /srv/jellyfin/cache:/cache -v /media:/media --net=host jellyfin/jellyfin:latest
```
## Copy lots of files
```bash
# Copy lots of specific files
find *.m4v | xargs -I {} echo \'{}\'
find ./*.m4v | xargs -I {} --v=2 kubectl cp \'{}\' jellyfin jf-59959d4895-p8gbx:/media/
# view file size
find ./*.m4v | xargs -I {} ls -lah {}
```