1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2026-06-19 04:00:13 +00:00

Add recipe for searxng (#274)

* Add recipe for searxng

Signed-off-by: David Young <davidy@funkypenguin.co.nz>

* Fussy linter

Signed-off-by: David Young <davidy@funkypenguin.co.nz>

---------

Signed-off-by: David Young <davidy@funkypenguin.co.nz>
This commit is contained in:
David Young
2023-03-11 06:47:52 +13:00
committed by GitHub
parent 3d48b42f15
commit cf44acda27
65 changed files with 439 additions and 132 deletions
+6 -3
View File
@@ -1,6 +1,7 @@
---
title: Run Plex in Docker
description: Play back all your media on all your devices
recipe: Plex
---
# Plex in Docker
@@ -9,6 +10,8 @@ description: Play back all your media on all your devices
![Plex Screenshot](../images/plex.jpg)
## {{ page.meta.recipe }} Requirements
--8<-- "recipe-standard-ingredients.md"
## Preparation
@@ -21,7 +24,7 @@ We'll need a directories to bind-mount into our container for Plex to store its
mkdir /var/data/plex
```
### Prepare environment
### Prepare {{ page.meta.recipe }} environment
Create plex.env, and populate with the following variables. Set PUID and GUID to the UID and GID of the user who owns your media files, on the local filesystem
@@ -32,9 +35,9 @@ PUID=42
PGID=42
```
### Setup Docker Swarm
### {{ page.meta.recipe }} Docker Swarm config
Create a docker swarm config file in docker-compose syntax (v3), something like this:
Create a docker swarm config file in docker-compose syntax (v3), something like the example below:
--8<-- "premix-cta.md"