Added podgrab docker config

pull/13/head
Jef Roosens 2021-04-23 17:03:53 +02:00
parent 4e246adf4d
commit ac5f944770
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# How often to check for new episodes in seconds
CHECK_FREQUENCY=240
# Password the basic auth
PASSWORD=changeme

View File

@ -0,0 +1,29 @@
version: '2.4'
services:
app:
image: 'akhilrex/podgrab:1.0.0'
restart: 'always'
healthcheck:
test: 'curl -f localhost:8080 || exit 1'
interval: '1m'
timeout: '10s'
retries: 3
start_period: '10s'
env_file:
- '.env'
networks:
- 'nginx'
volumes:
- 'config:/config'
- 'assets:/assets'
networks:
nginx:
external: true
volumes:
config:
assets: