123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- services:
- app:
- image: markoshust/magento-nginx:1.24-0
- ports:
- - "80:8000"
- - "443:8443"
- volumes: &appvolumes
- - ~/.composer:/var/www/.composer:cached
- - ~/.ssh/id_rsa:/var/www/.ssh/id_rsa:cached
- - ~/.ssh/known_hosts:/var/www/.ssh/known_hosts:cached
- - appdata:/var/www/html
- - sockdata:/sock
- - ssldata:/etc/nginx/certs
-
-
-
-
-
- phpfpm:
- image: markoshust/magento-php:8.3-fpm-4
- volumes: *appvolumes
- env_file: env/phpfpm.env
-
- db:
- image: mariadb:11.4
- command:
- --max_allowed_packet=64M
- --optimizer_use_condition_selectivity=1
- --optimizer_switch="rowid_filter=off"
- --log_bin_trust_function_creators=1
- ports:
- - "3306:3306"
- env_file: env/db.env
- volumes:
- - dbdata:/var/lib/mysql
-
-
-
-
-
-
-
-
-
-
-
-
- redis:
- image: valkey/valkey:8.1-alpine
- ports:
- - "6379:6379"
-
-
-
-
-
-
- opensearch:
- image: markoshust/magento-opensearch:2.12-0
- ports:
- - "9200:9200"
- - "9300:9300"
- env_file: env/opensearch.env
- environment:
- - "discovery.type=single-node"
-
-
- - "cluster.routing.allocation.disk.threshold_enabled=false"
- - "index.blocks.read_only_allow_delete"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rabbitmq:
- image: markoshust/magento-rabbitmq:4.1-0
- ports:
- - "15672:15672"
- - "5672:5672"
- volumes:
- - rabbitmqdata:/var/lib/rabbitmq
- env_file: env/rabbitmq.env
- mailcatcher:
- image: sj26/mailcatcher:v0.10.0
- ports:
- - "1080:1080"
-
-
-
-
-
-
-
-
-
-
-
-
- volumes:
- appdata:
- dbdata:
- rabbitmqdata:
- sockdata:
- ssldata:
|