22 lines
443 B
YAML
22 lines
443 B
YAML
version: "2.1"
|
|
|
|
volumes:
|
|
podgrab-config:
|
|
driver: local
|
|
podgrab-data:
|
|
driver: local
|
|
|
|
services:
|
|
podgrab:
|
|
image: akhilrex/podgrab
|
|
container_name: podgrab
|
|
environment:
|
|
- CHECK_FREQUENCY=240
|
|
# - PASSWORD=password ## Uncomment to enable basic authentication, username = podgrab
|
|
volumes:
|
|
- podgrab-config:/config
|
|
- podgrab-data:/assets
|
|
ports:
|
|
- 8080:8080
|
|
restart: unless-stopped
|