docker-compose.yml 952 B

1234567891011121314151617181920212223242526272829303132
  1. version: "3.7"
  2. services:
  3. sendsrv:
  4. image: php-swool-redis:latest
  5. volumes:
  6. - ../../conf/etc/localtime:/etc/localtime:ro
  7. - ../../../:/var/www/html
  8. - /nfs/upload:/var/www/html/data/upload
  9. - /mnt/testlog:/var/www/html/data/log
  10. - ../../conf/php/xyzt-php-swoole.ini:/usr/local/etc/php/php.ini
  11. container_name: "worker-sender"
  12. command: [php,"/var/www/html/server/send_refill.php"]
  13. deploy:
  14. resources:
  15. limits:
  16. cpus: '8'
  17. sendexsrv:
  18. image: php-swool-redis:latest
  19. volumes:
  20. - ../../conf/etc/localtime:/etc/localtime:ro
  21. - ../../../:/var/www/html
  22. - /nfs/upload:/var/www/html/data/upload
  23. - /mnt/testlog:/var/www/html/data/log
  24. - ../../conf/php/xyzt-php-swoole.ini:/usr/local/etc/php/php.ini
  25. container_name: "worker-senderex"
  26. command: [php,"/var/www/html/server/send_refillex.php"]
  27. deploy:
  28. resources:
  29. limits:
  30. cpus: '8'