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:
1111 environment :
1212 - MEILISEARCH_HOST=http://meilisearch:7700
1313 - MEILISEARCH_PORT=7700
14+ - MONGODB_HOST=mongo:27017
1415 - BUNDLE_PATH=/vendor/bundle
1516 depends_on :
1617 - meilisearch
18+ - mongo
1719 links :
1820 - meilisearch
21+ - mongo
1922 volumes :
2023 - bundle:/vendor/bundle
2124 - ./:/home/package
@@ -26,12 +29,14 @@ services:
2629 context : ./playground
2730 environment :
2831 - MEILISEARCH_HOST=http://meilisearch:7700
32+ - MONGODB_HOST=mongo:27017
2933 - BUNDLE_PATH=/vendor/bundle
3034 depends_on :
3135 - meilisearch
3236 working_dir : /home/app
3337 links :
3438 - meilisearch
39+ - mongo
3540 ports :
3641 - " 3000:3000"
3742 volumes :
@@ -46,3 +51,8 @@ services:
4651 environment :
4752 - MEILI_MASTER_KEY=masterKey
4853 - 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