File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,17 @@ APP_HOST ?= 0.0.0.0
3
3
APP_PORT ?= 8080
4
4
EXTERNAL_APP_PORT ?= ${APP_PORT}
5
5
6
- run_es = docker-compose -f docker-compose.yml \
7
- run \
8
- -p ${EXTERNAL_APP_PORT}:${APP_PORT} \
9
- -e PY_IGNORE_IMPORTMISMATCH=1 \
10
- -e APP_HOST=${APP_HOST} \
11
- -e APP_PORT=${APP_PORT} \
12
- app-elasticsearch
6
+ run_es = docker-compose \
7
+ run \
8
+ -p ${EXTERNAL_APP_PORT}:${APP_PORT} \
9
+ -e PY_IGNORE_IMPORTMISMATCH=1 \
10
+ -e APP_HOST=${APP_HOST} \
11
+ -e APP_PORT=${APP_PORT} \
12
+ app-elasticsearch
13
13
14
14
.PHONY : es-image
15
15
es-image :
16
- docker-compose -f docker-compose.yml build
16
+ docker-compose build
17
17
18
18
.PHONY : docker-run-es
19
19
docker-run-es : es-image
@@ -29,7 +29,7 @@ test-es:
29
29
30
30
.PHONY : run-es-database
31
31
run-es-database :
32
- docker-compose -f docker-compose.yml run --rm elasticsearch
32
+ docker-compose run --rm elasticsearch
33
33
34
34
.PHONY : test
35
35
test : test-elasticsearch
You can’t perform that action at this time.
0 commit comments