Skip to content

Commit

Permalink
Merge pull request #3 from moy2010/initial-release
Browse files Browse the repository at this point in the history
Fix order of parameters
  • Loading branch information
moy2010 authored Mar 5, 2022
2 parents c5772c1 + 9b10741 commit d308057
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.1

* Fix order or docker params

# 0.1

* Initial release.
2 changes: 1 addition & 1 deletion start-meilisearch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ echo " - version [$MEILISEARCH_VERSION]"
echo " - api key [$MEILISEARCH_API_KEY]"
echo ""

docker run --name meilisearch --publish $MEILISEARCH_PORT:$MEILISEARCH_PORT --detach --volume -e MEILI_MASTER_KEY=$MEILISEARCH_API_KEY "$(pwd)/data.ms:/data.ms" getmeili/meilisearch:$MEILISEARCH_VERSION
docker run --name meilisearch --publish $MEILISEARCH_PORT:$MEILISEARCH_PORT -e MEILI_MASTER_KEY=$MEILISEARCH_API_KEY --detach --volume "$(pwd)/data.ms:/data.ms" getmeili/meilisearch:$MEILISEARCH_VERSION
echo "::endgroup::"

0 comments on commit d308057

Please sign in to comment.