Update README for ZFS, update plex

This commit is contained in:
whitney 2024-03-06 09:33:58 -08:00
parent ea142d395c
commit 9f6f86b38c
3 changed files with 17 additions and 11 deletions

View File

@ -34,8 +34,14 @@ Olomana is based off of the latest stable version of Ubuntu Server (https://ubun
Managing disk partitions using `gdisk` and configuring drives for automatic mounting using the `fstab` file. Example: https://techguides.yt/guides/how-to-partition-format-and-auto-mount-disk-on-ubuntu-20-04/
#### Drives
Created a `/data/write` and `/data/persistent` mount point that my config is based on. Applications that write frequently do so to the dedicated drive mounted at `/data/write`, and persistent data is written to `/data/persistent`.
#### ZFS
Later, I created a ZFS system to replace non-ephemeral data. It's a ZFS pool using `raidz1`, mounted to /pwspool.
### OpenSSH installation
`sudo apt-get install openssh-server`

View File

@ -6,11 +6,11 @@ A self hosted plex server that is basically the vanilla plex docker container.
The container expects its mounted folders to exist already, before it's created.
Either create the following or mount a drive to /data/plex that has your data.
- `/data/persistent/plex/tvseries`
- `/data/persistent/plex/movies`
- `/data/persistent/plex/photos`
- `/data/persistent/plex/homevideos`
- `/data/persistent/plex/transcode`
- `/pwspool/plex/tvseries`
- `/pwspool/plex/movies`
- `/pwspool/plex/photos`
- `/pwspool/plex/homevideos`
- `/pwspool/plex/transcode`
(If Docker has been installed with snap, while installing the OS, you'll have issues here. It's better to seperately install docker-ce and docker-compose.

View File

@ -11,12 +11,12 @@ services:
- PGID=[[GROUP_ID]]
- VERSION=docker
volumes:
- /data/persistent/plex/:/config
- /data/persistent/plex/tvseries:/tv
- /data/persistent/plex/movies:/movies
- /data/persistent/plex/photos:/photos
- /data/persistent/plex/homevideos:/homevideos
- /data/persistent/plex/transcode:/transcode
- /pwspool/plex/:/config
- /pwspool/plex/tvseries:/tv
- /pwspool/plex/movies:/movies
- /pwspool/plex/photos:/photos
- /pwspool/plex/homevideos:/homevideos
- /pwspool/plex/transcode:/transcode
labels:
- "traefik.enable=false"