Skip to content

Commit 91e471e

Browse files
authored
maint: update to v2 docker compose (#296)
* update to v2 docker compose
1 parent a225044 commit 91e471e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
9797
- name: run Posit Connect
9898
run: |
99-
docker-compose up --build -d
99+
docker compose up --build -d
100100
make dev
101101
env:
102102
RSC_LICENSE: ${{ secrets.RSC_LICENSE }}

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ RSC_API_KEYS=pins/tests/rsconnect_api_keys.json
77
dev: pins/tests/rsconnect_api_keys.json
88

99
dev-start:
10-
docker-compose up -d
11-
docker-compose exec -T rsconnect bash < script/setup-rsconnect/add-users.sh
10+
docker compose up -d
11+
docker compose exec -T rsconnect bash < script/setup-rsconnect/add-users.sh
1212
# curl fails with error 52 without a short sleep....
1313
sleep 5
1414
curl -s --retry 10 --retry-connrefused http://localhost:3939
1515

1616
dev-stop:
17-
docker-compose down
17+
docker compose down
1818
rm -f $(RSC_API_KEYS)
1919

2020
$(RSC_API_KEYS): dev-start

0 commit comments

Comments
 (0)