Skip to content

Commit 66a4971

Browse files
committed
added tooling for docker-build
1 parent b021e7a commit 66a4971

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
run: npx playwright install --with-deps
105105

106106
- name: Start services
107-
run: docker-compose up -d
107+
run: docker compose up -d
108108

109109
- name: Wait for services
110110
run: npx wait-on http://localhost:3000 http://localhost:3030 http://localhost:5173 --timeout 120000
@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: Stop services
124124
if: always()
125-
run: docker-compose down
125+
run: docker compose down
126126

127127
# Lint & Type Check
128128
lint:
@@ -168,12 +168,12 @@ jobs:
168168
- uses: actions/checkout@v3
169169

170170
- name: Build Docker images
171-
run: docker-compose build
171+
run: docker compose build
172172

173173
- name: Test Docker containers
174174
run: |
175-
docker-compose up -d
175+
docker compose up -d
176176
sleep 30
177-
docker-compose ps
178-
docker-compose down
177+
docker compose ps
178+
docker compose down
179179

0 commit comments

Comments
 (0)