Skip to content

Commit 035e889

Browse files
committed
Create docker-compose.yml
1 parent 516dceb commit 035e889

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

docker-compose.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
- meilisearch
20+
volumes:
21+
# - bundle:/vendor/bundle
22+
- ./:/home/package
23+
24+
meilisearch:
25+
image: getmeili/meilisearch:latest
26+
ports:
27+
- "7700"
28+
environment:
29+
- MEILI_MASTER_KEY=masterKey
30+
- MEILI_NO_ANALYTICS=true

0 commit comments

Comments
 (0)