You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installation, you can use phpMinAdmin 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.
201
201
202
202
## Customization
203
-
If you want to customize the image by adding some packages, e.g. `lsphp74-pspell`, just extend it with a Dockerfile.
203
+
If you want to customize the image by adding some packages, e.g. `lsphp83-pspell`, just extend it with a Dockerfile.
204
204
1. We can create a `custom` folder and a `custom/Dockerfile` file under the main project.
205
205
2. Add the following example code to `Dockerfile` under the custom folder
206
206
```
207
207
FROM litespeedtech/litespeed:latest
208
-
RUN apt-get update && apt-get install lsphp74-pspell
208
+
RUN apt-get update && apt-get install lsphp83-pspell
209
209
```
210
210
3. Add `build: ./custom` line under the "image: litespeedtech" of docker-composefile. So it will looks like this
0 commit comments