File tree 3 files changed +16
-9
lines changed
3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ The docker image installs the following packages on your system:
34
34
| :-------------: | :-------------: |
35
35
| Linux| Ubuntu 24.04|
36
36
| LiteSpeed| [ Latest version] ( https://www.litespeedtech.com/products/litespeed-web-server/download ) |
37
- | MariaDB| [ Stable version: 10.4 ] ( https://hub.docker.com/_/mariadb ) |
37
+ | MariaDB| [ Stable version: 10.6 ] ( https://hub.docker.com/_/mariadb ) |
38
38
| PHP| [ Latest version] ( http://rpms.litespeedtech.com/debian/ ) |
39
39
| LiteSpeed Cache| [ Latest from WordPress.org] ( https://wordpress.org/plugins/litespeed-cache/ ) |
40
40
| ACME| [ Latest from ACME official] ( https://github.com/acmesh-official/get.acme.sh ) |
41
41
| Magento2| [ 2.4.7] ( https://devdocs.magento.com/guides/v2.4/release-notes/open-source-2-4-2.html ) |
42
- | elasticsearch| [ 8.4.2 ] ( https://hub.docker.com/_/elasticsearch ) |
42
+ | elasticsearch| [ 7.9.1 ] ( https://hub.docker.com/_/elasticsearch ) |
43
43
| WordPress| [ Latest from WordPress] ( https://wordpress.org/download/ ) |
44
44
| phpMyAdmin| [ Latest from dockerhub] ( https://hub.docker.com/r/bitnami/phpmyadmin/ ) |
45
45
Original file line number Diff line number Diff line change @@ -727,6 +727,7 @@ install_magento(){
727
727
--timezone=America/Chicago \
728
728
--use-rewrites=1 \
729
729
--backend-frontname=${MA_BACK_URL} \
730
+ --search-engine=elasticsearch7 \
730
731
--elasticsearch-host=elasticsearch \
731
732
--elasticsearch-port=9200
732
733
./bin/magento config:set web/unsecure/base_url http://${DOMAIN} /
Original file line number Diff line number Diff line change 1
- version : ' 3'
2
1
services :
3
2
mysql :
4
- image : mariadb:10.4
3
+ image : mariadb:10.6
5
4
command : --max_allowed_packet=256M --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
6
5
volumes :
7
6
- " ./data/db:/var/lib/mysql:delegated"
8
- ports :
9
- - " 3306:3306"
10
7
environment :
11
8
MYSQL_ROOT_PASSWORD : ${MYSQL_ROOT_PASSWORD}
12
9
MYSQL_DATABASE : ${MYSQL_DATABASE}
13
10
MYSQL_USER : ${MYSQL_USER}
14
11
MYSQL_PASSWORD : ${MYSQL_PASSWORD}
15
- restart : always
12
+ restart : always
13
+ networks :
14
+ - default
16
15
litespeed :
17
16
image : litespeedtech/litespeed:${LSWS_VERSION}-${PHP_VERSION}
18
17
env_file :
@@ -32,6 +31,8 @@ services:
32
31
restart : always
33
32
environment :
34
33
TZ : ${TimeZone}
34
+ networks :
35
+ - default
35
36
phpmyadmin :
36
37
image : bitnami/phpmyadmin:5.2.0-debian-11-r43
37
38
ports :
@@ -48,6 +49,11 @@ services:
48
49
- 9200:9200
49
50
volumes :
50
51
- esdata:/usr/share/elasticsearch/data
51
- restart : always
52
+ restart : always
53
+ networks :
54
+ - default
52
55
volumes :
53
- esdata:
56
+ esdata :
57
+ networks :
58
+ default :
59
+ driver : bridge
You can’t perform that action at this time.
0 commit comments