1234567891011121314151617181920212223242526272829303132 |
- version: "3.7"
- services:
- sendsrv:
- image: php-swool-redis:latest
- volumes:
- - ../../conf/etc/localtime:/etc/localtime:ro
- - ../../../:/var/www/html
- - /nfs/upload:/var/www/html/data/upload
- - /mnt/testlog:/var/www/html/data/log
- - ../../conf/php/xyzt-php-swoole.ini:/usr/local/etc/php/php.ini
- container_name: "worker-sender"
- command: [php,"/var/www/html/server/send_refill.php"]
- deploy:
- resources:
- limits:
- cpus: '8'
- sendexsrv:
- image: php-swool-redis:latest
- volumes:
- - ../../conf/etc/localtime:/etc/localtime:ro
- - ../../../:/var/www/html
- - /nfs/upload:/var/www/html/data/upload
- - /mnt/testlog:/var/www/html/data/log
- - ../../conf/php/xyzt-php-swoole.ini:/usr/local/etc/php/php.ini
- container_name: "worker-senderex"
- command: [php,"/var/www/html/server/send_refillex.php"]
- deploy:
- resources:
- limits:
- cpus: '8'
|