| 123456789101112131415161718192021222324252627282930313233343536 |
- services:
- app:
- build: .
- container_name: bot-28-app
- volumes:
- - .:/var/www/html
- - /path/to/wkhtmltoimage:/usr/bin/wkhtmltoimage
- networks:
- - bot-28-network
- web:
- image: nginx:alpine
- container_name: bot-28-web
- volumes:
- - .:/var/www/html
- - ./nginx.conf:/etc/nginx/conf.d/default.conf
- depends_on:
- - app
- networks:
- - bot-28-network
- queue:
- build: .
- container_name: bot-28-queue
- command: php artisan queue:work --queue
- volumes:
- - .:/var/www/html
- - /path/to/wkhtmltoimage:/usr/bin/wkhtmltoimage
- depends_on:
- - app
- networks:
- - bot-28-network
- networks:
- bot-28-network:
- driver: bridge
|