We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0f65f commit 634697bCopy full SHA for 634697b
docker-compose.yml
@@ -7,7 +7,7 @@ services:
7
stdin_open: true
8
working_dir: /home/package
9
environment:
10
- - MEILISEARCH_HOST=http://meilisearch:7700
+ - MEILISEARCH_URL=http://meilisearch:7700
11
depends_on:
12
- meilisearch
13
links:
tests/common.py
@@ -1,7 +1,7 @@
1
import os
2
3
MASTER_KEY = 'masterKey'
4
-BASE_URL = os.getenv('MEILISEARCH_HOST') if os.getenv('MEILISEARCH_HOST') else 'http://127.0.0.1:7700'
+BASE_URL = os.getenv('MEILISEARCH_URL') if os.getenv('MEILISEARCH_URL') else 'http://127.0.0.1:7700'
5
6
INDEX_UID = 'indexUID'
INDEX_UID2 = 'indexUID2'
0 commit comments