File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,14 @@ services:
11
11
environment :
12
12
- MEILISEARCH_HOST=http://meilisearch:7700
13
13
- MEILISEARCH_PORT=7700
14
+ - MONGODB_HOST=mongo:27017
14
15
- BUNDLE_PATH=/vendor/bundle
15
16
depends_on :
16
17
- meilisearch
18
+ - mongo
17
19
links :
18
20
- meilisearch
21
+ - mongo
19
22
volumes :
20
23
- bundle:/vendor/bundle
21
24
- ./:/home/package
@@ -26,12 +29,14 @@ services:
26
29
context : ./playground
27
30
environment :
28
31
- MEILISEARCH_HOST=http://meilisearch:7700
32
+ - MONGODB_HOST=mongo:27017
29
33
- BUNDLE_PATH=/vendor/bundle
30
34
depends_on :
31
35
- meilisearch
32
36
working_dir : /home/app
33
37
links :
34
38
- meilisearch
39
+ - mongo
35
40
ports :
36
41
- " 3000:3000"
37
42
volumes :
@@ -46,3 +51,8 @@ services:
46
51
environment :
47
52
- MEILI_MASTER_KEY=masterKey
48
53
- MEILI_NO_ANALYTICS=true
54
+
55
+ mongo :
56
+ image : mongo:latest
57
+ ports :
58
+ - " 27017:27017"
You can’t perform that action at this time.
0 commit comments