mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-03-05 14:55:22 +02:00
17 lines
274 B
YAML
17 lines
274 B
YAML
|
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
|