Fix Nginx startup in deployment
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 21s

This commit is contained in:
Akshay Kolli
2026-07-18 20:11:06 -04:00
parent 9dda076b56
commit 5949fb6808
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@ jobs:
run: |
docker build --pull -t akkolli-website:latest .
- name: Validate web server configuration
run: |
docker run --rm akkolli-website:latest nginx -t
- name: Stop existing container
run: |
docker stop website-container || true