Skip to content

Commit 08476c0

Browse files
authored
remove hyphen in docker compose commands
1 parent 827420a commit 08476c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/monthly-docker-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
working-directory: store
1717
run: |
1818
echo "Services in store/docker-compose.yml:"
19-
docker-compose config --services
19+
docker compose config --services
2020
echo "Building all images in store/docker-compose.yml with --no-cache"
21-
docker-compose build --no-cache
21+
docker compose build --no-cache
2222
2323
- name: Build compose images
2424
working-directory: compose
2525
run: |
2626
echo "Services in compose/docker-compose.yml:"
27-
docker-compose config --services
27+
docker compose config --services
2828
echo "Building all images in compose/docker-compose.yml with --no-cache"
29-
docker-compose build --no-cache
29+
docker compose build --no-cache

0 commit comments

Comments
 (0)