mirror of
https://github.com/tedkulp/vidgrab
synced 2026-03-04 13:10:04 -05:00
20 lines
374 B
YAML
20 lines
374 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis
|
|
restart: unless-stopped
|
|
ports:
|
|
- 6379:6379
|
|
vidgrab:
|
|
# image: tedkulp/vidgrab
|
|
build: .
|
|
restart: unless-stopped
|
|
environment:
|
|
- REDIS_HOST=redis
|
|
- FILE_DIR=/downloads
|
|
- SITE_URL=http://localhost:4200
|
|
ports:
|
|
- 4200:4200
|
|
volumes:
|
|
- ${PWD}/downloads:/downloads
|