Skip to content

Commit

Permalink
avoid docker-compose on github actions (superdesk#2656)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek authored Aug 7, 2024
1 parent 977469e commit c1f85c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/database recording.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ terminal, in the directory where your ``docker-compose.yml`` is located.

::

> docker-compose exec mongodb /bin/bash
> docker compose exec mongodb /bin/bash
> mongo
> rs.initiate()

Expand Down
2 changes: 1 addition & 1 deletion scripts/tests_setup
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ sudo dpkg -i libmagic-mgc_5.37-3_amd64.deb
sudo dpkg -i libmagic1_5.37-3_amd64.deb

if [ "$SKIP_SERVER_INSTALL" != "true" ]; then
docker-compose up -d
docker compose up -d
while ! curl -sfo /dev/null 'http://localhost:9200/'; do echo -n '.' && sleep .5; done
fi

0 comments on commit c1f85c9

Please sign in to comment.