Skip to content

Commit 1a5c7a7

Browse files
committed
Update documentation
1 parent a303995 commit 1a5c7a7

1 file changed

Lines changed: 35 additions & 1 deletion

File tree

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ Let's see how easy it is to install `NGINX`, `PHP`, `Composer`, `MySQL` and `Red
120120
- **Cache Engines:**
121121
- Redis
122122
- Memcached
123+
- Aerospike
123124
- **PHP Servers:**
124125
- NGINX
125126
- Apache2
@@ -250,7 +251,7 @@ docker-compose up -d nginx mysql
250251

251252
You can select your own combination of Containers form the list below:
252253

253-
`nginx`, `hhvm`, `php-fpm`, `mysql`, `redis`, `postgres`, `mariadb`, `neo4j`, `mongo`, `apache2`, `caddy`, `memcached`, `beanstalkd`, `beanstalkd-console`, `rabbitmq`, `workspace`, `phpmyadmin`.
254+
`nginx`, `hhvm`, `php-fpm`, `mysql`, `redis`, `postgres`, `mariadb`, `neo4j`, `mongo`, `apache2`, `caddy`, `memcached`, `beanstalkd`, `beanstalkd-console`, `rabbitmq`, `workspace`, `phpmyadmin`, `aerospike`.
254255

255256

256257
**Note**: `workspace` and `php-fpm` will run automatically in most of the cases, so no need to specify them in the `up` command.
@@ -995,7 +996,40 @@ It should be like this:
995996

996997
3 - Re-build the container `docker-compose build workspace`
997998

999+
<br>
1000+
<a name="Install-Aerospike-Extension"></a>
1001+
### Install Aerospike extension
1002+
1003+
1 - First install `aerospike` in the Workspace and the PHP-FPM Containers:
1004+
<br>
1005+
a) open the `docker-compose.yml` file
1006+
<br>
1007+
b) search for the `INSTALL_AEROSPIKE_EXTENSION` argument under the Workspace Container
1008+
<br>
1009+
c) set it to `true`
1010+
<br>
1011+
d) search for the `INSTALL_AEROSPIKE_EXTENSION` argument under the PHP-FPM Container
1012+
<br>
1013+
e) set it to `true`
1014+
1015+
It should be like this:
1016+
1017+
```yml
1018+
workspace:
1019+
build:
1020+
context: ./workspace
1021+
args:
1022+
- INSTALL_AEROSPIKE_EXTENSION=true
1023+
...
1024+
php-fpm:
1025+
build:
1026+
context: ./php-fpm
1027+
args:
1028+
- INSTALL_AEROSPIKE_EXTENSION=true
1029+
...
1030+
```
9981031

1032+
2 - Re-build the containers `docker-compose build workspace php-fpm`
9991033

10001034
<br>
10011035
<a name="debugging"></a>

0 commit comments

Comments
 (0)