File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ RUN apt-get install -y \
15
15
-qq > /dev/null \
16
16
&& docker-php-ext-install zip > /dev/null
17
17
18
- # Install docker
19
- RUN apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin > /dev/null
20
-
21
18
# Install yaml extension for PHP
22
19
RUN pecl channel-update pecl.php.net > /dev/null
23
20
RUN pecl install yaml > /dev/null
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ echo -e "\033[34;1mINFO:\033[0m URL ${ELASTICSEARCH_URL}\033[0m"
20
20
echo -e " \033[34;1mINFO:\033[0m CONTAINER ${elasticsearch_container} \033[0m"
21
21
echo -e " \033[34;1mINFO:\033[0m PHP_VERSION ${PHP_VERSION} \033[0m"
22
22
23
+ echo -e " \033[1m>>>>> Running Elasticsearch >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
24
+
25
+ curl -fsSL https://elastic.co/start-local | sh -s -- -v ${STACK_VERSION} -esonly
26
+ source elastic-start-local/.env
27
+
23
28
echo -e " \033[1m>>>>> Build docker container >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
24
29
25
30
docker build \
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- # Run Elasticsearch using start-local
4
- curl -fsSL https://elastic.co/start-local | sh -s -- -v ${STACK_VERSION} -esonly
5
- source elastic-start-local/.env
6
-
7
3
# Clone the elasticsearch-clients-tests repository
8
4
git clone https://github.com/elastic/elasticsearch-clients-tests.git tests/elasticsearch-clients-tests
9
5
You can’t perform that action at this time.
0 commit comments