1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-08 02:51:25 +00:00
dockerfiles/youtube/youtube-worker/docker-compose.yml

17 lines
274 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:
- PASSWORD=secret-passwd
restart: always
redis:
image: redis
command: redis-server --requirepass 'secret-passwd'
ports:
- "6379:6379"
restart: always