Fix bookmarklet. Update docs and ports

This commit is contained in:
2021-08-04 15:10:32 -04:00
parent 8be6bd9527
commit 2e300a9964
7 changed files with 82 additions and 94 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
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