Skip to content

Commit

Permalink
refs #000: Update to Docker Compose V2. (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
ailequal authored Jan 2, 2024
1 parent f038d1d commit e636f39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
all: theme-install-dep theme-build up

up:
docker-compose pull
docker-compose up -d
docker compose pull
docker compose up -d

cli:
docker-compose run --rm documentation sh
docker compose run --rm documentation sh

logs:
docker-compose logs -f
docker compose logs -f

check:
docker-compose run -T --rm documentation npm run check
docker compose run -T --rm documentation npm run check

# Sparkkit based themes specific commands.
theme-watch:
Expand Down
2 changes: 1 addition & 1 deletion bin/npm
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ if [ -z "$CMD" ]
then
CMD="version"
fi
docker-compose run -w "/opt/raneto/themes/spark-playbook" --rm documentation npm ${CMD}
docker compose run -w "/opt/raneto/themes/spark-playbook" --rm documentation npm ${CMD}

0 comments on commit e636f39

Please sign in to comment.