Skip to content

Commit f5d81ff

Browse files
committed
Fix Docker Compose command for GitHub Actions compatibility
1 parent 619f2ae commit f5d81ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ all : test test_split
5353
proxy : test_proxy
5454
@echo "Starting proxy server..."
5555
cd proxy && \
56-
docker-compose up -d
56+
docker compose up -d
5757
@echo "Running proxy tests..."
5858
./test_proxy; \
5959
exit_code=$$?; \
6060
echo "Stopping proxy server..."; \
61-
docker-compose down; \
61+
cd proxy && docker compose down; \
6262
exit $$exit_code
6363

6464
test : test.cc include_httplib.cc ../httplib.h Makefile cert.pem

0 commit comments

Comments
 (0)