mirror of
				https://github.com/tiyn/wiki.git
				synced 2025-10-31 18:31:15 +01:00 
			
		
		
		
	
		
			
				
	
	
	
		
			1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
axhilrex - podgrab
This is a Docker container for a Podgrab server. The official container and documentation was made by axhilrex.
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 podgrabuser | 
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
#!/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