mirror of
https://github.com/tiyn/wiki.git
synced 2025-10-10 18:01:22 +02:00
podcasts: added podgrab as software and to the audio entry
This commit is contained in:
51
wiki/docker-images/axhilrex_-_podgrab.md
Normal file
51
wiki/docker-images/axhilrex_-_podgrab.md
Normal file
@@ -0,0 +1,51 @@
|
||||
# axhilrex - podgrab
|
||||
|
||||
This is a docker container for a [Podgrab](../podgrab.md)
|
||||
server.
|
||||
The official container and documentation was made by
|
||||
[axhilrex](https://github.com/akhilrex/podgrab).
|
||||
|
||||
## Set-up
|
||||
|
||||
Create the file `rebuild.sh`.
|
||||
Change the settings according to your needs and run `./rebuild.sh` afterwards.
|
||||
|
||||
## Environment-variables
|
||||
|
||||
Set the following variables with the -e tag.
|
||||
|
||||
| Name | Usage | Default |
|
||||
| ---------- | ----------------------------- | ------- |
|
||||
| `PASSWORD` | Password for `podgrab` user | |
|
||||
|
||||
## Volumes
|
||||
|
||||
Set the following volumes with the -v tag.
|
||||
|
||||
| Outside mount/volume name | Container mount | Description |
|
||||
| ------------------------- | --------------- | ----------------------- |
|
||||
| `podgrab_config` | `/config` | Configuration files |
|
||||
| `media_podcasts` | `/assets` | location for podcasts |
|
||||
|
||||
## Ports
|
||||
|
||||
Set the following ports with the -p tag.
|
||||
|
||||
| Container Port | Recommended outside port | Protocol | Description |
|
||||
| -------------- | ------------------------ | -------- | ----------- |
|
||||
| `8080` | `8080` | TCP | WebUI |
|
||||
|
||||
## rebuild.sh
|
||||
|
||||
```sh
|
||||
#!/bin/sh
|
||||
docker stop podgrab
|
||||
docker rm podgrab
|
||||
docker pull akhilrex/podgrab
|
||||
docker run --name=podgrab \
|
||||
--restart unless-stopped \
|
||||
-p 8000:8080 \
|
||||
-v "media_podcasts:/assets" \
|
||||
-v "podgrab_config:/config" \
|
||||
-d akhilrex/podgrab
|
||||
```
|
Reference in New Issue
Block a user