Skip to content

Commit 2d7b058

Browse files
committed
modified: .env
modified: README.md modified: docker-compose.yml
1 parent 7b5a79e commit 2d7b058

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TimeZone=America/New_York
2-
OLS_VERSION=1.8.1
2+
OLS_VERSION=1.8.2
33
PHP_VERSION=lsphp83
44
MYSQL_DATABASE=wordpress
55
MYSQL_ROOT_PASSWORD=password

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ The docker image installs the following packages on your system:
3131

3232
|Component|Version|
3333
| :-------------: | :-------------: |
34-
|Linux|Ubuntu 22.04|
34+
|Linux|Ubuntu 24.04|
3535
|OpenLiteSpeed|[Latest version](https://hub.docker.com/r/litespeedtech/openlitespeed)|
36-
|MariaDB|[Stable version: 10.5](https://hub.docker.com/_/mariadb)|
36+
|MariaDB|[Stable version: 11.4](https://hub.docker.com/_/mariadb)|
3737
|PHP|[Latest version](http://rpms.litespeedtech.com/debian/)|
3838
|LiteSpeed Cache|[Latest from WordPress.org](https://wordpress.org/plugins/litespeed-cache/)|
3939
|ACME|[Latest from ACME official](https://github.com/acmesh-official/get.acme.sh)|
@@ -176,12 +176,12 @@ bash bin/webadmin.sh [-M, --mod-secure] disable
176176
After installation, you can use phpMyAdmin to access the database by visiting `http://127.0.0.1:8080` or `https://127.0.0.1:8443`. The default username is `root`, and the password is the same as the one you supplied in the `.env` file.
177177

178178
## Customization
179-
If you want to customize the image by adding some packages, e.g. `lsphp80-pspell`, just extend it with a Dockerfile.
179+
If you want to customize the image by adding some packages, e.g. `lsphp83-pspell`, just extend it with a Dockerfile.
180180
1. We can create a `custom` folder and a `custom/Dockerfile` file under the main project.
181181
2. Add the following example code to `Dockerfile` under the custom folder
182182
```
183183
FROM litespeedtech/openlitespeed:latest
184-
RUN apt-get update && apt-get install lsphp80-pspell -y
184+
RUN apt-get update && apt-get install lsphp83-pspell -y
185185
```
186186
3. Add `build: ./custom` line under the "image: litespeedtech" of docker-composefile. So it will looks like this
187187
```

docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
version: '3'
21
services:
32
mysql:
4-
image: mariadb:10.5.9
3+
image: mariadb:11.4
54
logging:
65
driver: none
76
command: ["--max-allowed-packet=512M"]

0 commit comments

Comments
 (0)