From bc27e963374f2f2b44d157009b392388318f5925 Mon Sep 17 00:00:00 2001 From: Abdelrahman Omran Date: Sun, 24 Jun 2018 04:00:52 +0200 Subject: [PATCH] Update aerospike installation instructions (#1635) --- DOCUMENTATION/content/documentation/index.md | 24 ++++---------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 013d9edf..6fe30930 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1299,32 +1299,16 @@ You are free to modify the `aliases.sh` as you see fit, adding your own aliases 1 - First install `aerospike` in the Workspace and the PHP-FPM Containers:
-a) open the `docker-compose.yml` file +a) open the `.env` file
-b) search for the `INSTALL_AEROSPIKE` argument under the Workspace Container +b) search for the `WORKSPACE_INSTALL_AEROSPIKE` argument under the Workspace Container
c) set it to `true`
-d) search for the `INSTALL_AEROSPIKE` argument under the PHP-FPM Container +d) search for the `PHP_FPM_INSTALL_AEROSPIKE` argument under the PHP-FPM Container
e) set it to `true` - -It should be like this: - -```yml - workspace: - build: - context: ./workspace - args: - - INSTALL_AEROSPIKE=true - ... - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_AEROSPIKE=true - ... -``` +
2 - Re-build the containers `docker-compose build workspace php-fpm`