3.25-amd
This commit is contained in:
parent
1f12d55ad0
commit
d722c58de7
@ -185,6 +185,8 @@ done
|
|||||||
[MariaDB Statefulset](https://mariadb.org/create-statefulset-mariadb-application-in-k8s/)
|
[MariaDB Statefulset](https://mariadb.org/create-statefulset-mariadb-application-in-k8s/)
|
||||||
[PHP-FPM, nginx, kubernetes and docker](https://matthewpalmer.net/kubernetes-app-developer/articles/php-fpm-nginx-kubernetes.html)
|
[PHP-FPM, nginx, kubernetes and docker](https://matthewpalmer.net/kubernetes-app-developer/articles/php-fpm-nginx-kubernetes.html)
|
||||||
|
|
||||||
|
https://www.elastic.co/guide/en/elasticsearch/reference/8.18/docker.html
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
### 3.25 (2024-04-14)
|
### 3.25 (2024-04-14)
|
||||||
**New features:**
|
**New features:**
|
||||||
|
|||||||
@ -17,7 +17,7 @@ do
|
|||||||
install)
|
install)
|
||||||
env UID=${_UID} GID=${_GID} docker compose up -d wwwgmo-php-fpm
|
env UID=${_UID} GID=${_GID} docker compose up -d wwwgmo-php-fpm
|
||||||
#docker exec --user root wwwgmo-php-fpm "/bin/sh -c 'cd /var/www/html/; composer require elasticsearch/elasticsearch'"
|
#docker exec --user root wwwgmo-php-fpm "/bin/sh -c 'cd /var/www/html/; composer require elasticsearch/elasticsearch'"
|
||||||
docker exec --user root wwwgmo-php-fpm /bin/sh -c "cd /var/www/html; composer require elasticsearch/elasticsearch"
|
docker exec --user root wwwgmo-php-fpm /bin/sh -c "cd /var/www/html; composer require elasticsearch/elasticsearch:^7.17.2"
|
||||||
env UID=${_UID} GID=${_GID} docker compose stop
|
env UID=${_UID} GID=${_GID} docker compose stop
|
||||||
;;
|
;;
|
||||||
start)
|
start)
|
||||||
|
|||||||
@ -26,4 +26,4 @@ version: 1.0.0
|
|||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
# Also set the docker image tag
|
# Also set the docker image tag
|
||||||
appVersion: "1.0"
|
appVersion: "3.25-amd64"
|
||||||
|
|||||||
@ -5,6 +5,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"elasticsearch/elasticsearch": "^8.14"
|
"elasticsearch/elasticsearch": "^7.17.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
943
src/composer.lock
generated
943
src/composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once "./vendor/autoload.php";
|
require_once "./vendor/autoload.php";
|
||||||
use Elastic\Elasticsearch\ClientBuilder;
|
use Elasticsearch\ClientBuilder;
|
||||||
|
|
||||||
require_once 'config.php';
|
require_once 'config.php';
|
||||||
function connect_es($es_host, $es_user, $es_password)
|
function connect_es($es_host, $es_user, $es_password)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user