mirror of
https://github.com/10h30/ols-docker-env.git
synced 2026-05-12 15:21:24 +09:00
readme
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
# OpenLiteSpeed WordPress Docker Container
|
# OpenLiteSpeed WordPress Docker Container (beta)
|
||||||
Lightweight WordPress container with OpenLiteSpeed 1.5.10 & PHP 7.3 based on Ubuntu 18.04 Linux.
|
Lightweight WordPress container with OpenLiteSpeed 1.5.10 & PHP 7.3 based on Ubuntu 18.04 Linux.
|
||||||
|
|
||||||
WordPress version will install: Latest
|
WordPress version will install: Latest
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
@@ -18,6 +19,38 @@ Open a terminal and `cd` to the folder in which `docker-compose.yml` is saved an
|
|||||||
```
|
```
|
||||||
docker-compose up
|
docker-compose up
|
||||||
```
|
```
|
||||||
|
There's an existing `sites` folder next to your docker-compose.yml file.
|
||||||
|
|
||||||
|
* `sites` – the location of your WordPress application
|
||||||
|
* `sites/localhost/logs/` - the location of your access log
|
||||||
|
|
||||||
The containers are now built and running. You should be able to access the WordPress installation with the configured domain in the browser address. By default it is http://127.0.0.1.
|
The containers are now built and running. You should be able to access the WordPress installation with the configured domain in the browser address. By default it is http://127.0.0.1.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
### Starting containers
|
||||||
|
You can start the containers with up or start methods:
|
||||||
|
```
|
||||||
|
docker-compose up
|
||||||
|
```
|
||||||
|
Running with daemon mode
|
||||||
|
```
|
||||||
|
docker-compose up -d
|
||||||
|
```
|
||||||
|
```
|
||||||
|
docker-compose start
|
||||||
|
```
|
||||||
|
### Stopping containers
|
||||||
|
```
|
||||||
|
docker-compose stop
|
||||||
|
```
|
||||||
|
### Removing containers
|
||||||
|
To stop and remove all the containers use the down command:
|
||||||
|
```
|
||||||
|
docker-compose down
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### Adminer (formerly phpMinAdmin)
|
||||||
|
You can also visit http://127.0.0.1:8080 to access Data Base after starting the containers.
|
||||||
|
|
||||||
|
The default username is root, and the password is the same as supplied in the .env file.
|
||||||
Reference in New Issue
Block a user