Skip to content

Commit

Permalink
fix docker compose setup calls
Browse files Browse the repository at this point in the history
  • Loading branch information
s4ke committed Sep 25, 2024
1 parent 4eb2f87 commit ae7ed1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deploy/local/compose/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ function ensure_bucket {
if [ "$NFCOMPOSE_SETUP_SKIP_PULL" == "yes" ]; then
echo "skipping nfcompose image pull."
else
docker compose -f docker compose.yml pull
docker compose -f docker-compose.yml pull
check_result "failed to pull docker images"
fi

docker compose -f docker compose.yml up -d
docker compose -f docker-compose.yml up -d
check_result "failed to create docker compose services"

USER_STRING='"admin"'
Expand Down
2 changes: 1 addition & 1 deletion deploy/production/docker-compose/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker Compose + NF Compose

This docker compose.yml is a sample setup that can be used in a near production grade deployment
This docker-compose.yml is a sample setup that can be used in a near production grade deployment
using Docker Compose.

This setup is preferred over the setup in [local](../../local/) for
Expand Down

0 comments on commit ae7ed1b

Please sign in to comment.