File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1818
1919 - name : Build with Docker Compose
2020 run : |
21- docker- compose build
21+ docker compose build
2222
2323 - name : Verify builds completed
2424 run : |
2828 - name : Test health endpoint readiness
2929 run : |
3030 # Start services in background
31- docker- compose up -d
31+ docker compose up -d
3232
3333 # Wait for services to be ready (max 5 minutes)
3434 timeout 300 bash -c 'until curl -f http://localhost:8000/memoryalpha/health > /dev/null 2>&1; do sleep 5; echo "Waiting for API..."; done'
7171 - name : Cleanup
7272 if : always()
7373 run : |
74- docker- compose down -v
74+ docker compose down -v
7575 docker system prune -f
Original file line number Diff line number Diff line change 1717
1818 - name : Build with Docker Compose
1919 run : |
20- docker- compose build
20+ docker compose build
2121
2222 - name : Verify builds completed
2323 run : |
2727 - name : Test health endpoint readiness
2828 run : |
2929 # Start services in background
30- docker- compose up -d
30+ docker compose up -d
3131
3232 # Wait for services to be ready (max 5 minutes)
3333 timeout 300 bash -c 'until curl -f http://localhost:8000/memoryalpha/health > /dev/null 2>&1; do sleep 5; echo "Waiting for API..."; done'
5454 - name : Cleanup
5555 if : always()
5656 run : |
57- docker- compose down -v
57+ docker compose down -v
5858 docker system prune -f
You can’t perform that action at this time.
0 commit comments