1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/youtube/youtube-worker/docker-compose.yml

20 lines
339 B
YAML
Raw Normal View History

2015-07-12 16:43:50 +00:00
worker:
image: vimagick/youtube-worker
links:
- redis
volumes:
- data:/data
environment:
2015-07-13 05:51:49 +00:00
- DATABASE=1
2015-07-12 16:43:50 +00:00
- PASSWORD=secret-passwd
2015-07-13 05:51:49 +00:00
- FORMAT=worst
- OUTTMPL=%(id)s.%(ext)s
2015-07-12 16:43:50 +00:00
restart: always
redis:
image: redis
command: redis-server --requirepass 'secret-passwd'
ports:
- "6379:6379"
restart: always