mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-16 11:37:32 +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
|