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 516dceb commit 035e889Copy full SHA for 035e889
docker-compose.yml
@@ -0,0 +1,30 @@
1
+version: "3.8"
2
+
3
+# remove this line if you don't need a volume to map your dependencies
4
+# volumes:
5
+# bundle:
6
7
+services:
8
+ package:
9
+ image: language-name:version
10
+ tty: true
11
+ stdin_open: true
12
+ working_dir: /home/package
13
+ environment:
14
+ - MEILISEARCH_HOST=http://meilisearch:7700
15
+ - MEILISEARCH_PORT=7700
16
+ depends_on:
17
+ - meilisearch
18
+ links:
19
20
+ volumes:
21
+ # - bundle:/vendor/bundle
22
+ - ./:/home/package
23
24
+ meilisearch:
25
+ image: getmeili/meilisearch:latest
26
+ ports:
27
+ - "7700"
28
29
+ - MEILI_MASTER_KEY=masterKey
30
+ - MEILI_NO_ANALYTICS=true
0 commit comments