15 lines
385 B
YAML
Executable File
15 lines
385 B
YAML
Executable File
services:
|
|
php:
|
|
image: registry.caldwell.digital/home/torsearch/app:${TAG}
|
|
ports:
|
|
- "8001:80"
|
|
deploy:
|
|
replicas: 2
|
|
|
|
worker:
|
|
image: registry.caldwell.digital/home/torsearch/app:${TAG}
|
|
volumes:
|
|
- /mnt/media/downloads:/var/download
|
|
command: php ./bin/console messenger:consume async -v --time-limit=3600 --limit=10
|
|
deploy:
|
|
replicas: 2 |