diff --git a/.github/workflows/podman.yml b/.github/workflows/podman.yml index d4ec65ce5..540326b85 100644 --- a/.github/workflows/podman.yml +++ b/.github/workflows/podman.yml @@ -49,6 +49,8 @@ jobs: cp .env frontend/.env - name: Build Podman images run: podman-compose -f docker-compose-deploy.yml build + - name: Kill muscle client container + run: podman rm -f muscle_client-runner_1 || true - name: Deploy Podman images run: podman-compose -f docker-compose-deploy.yml up -d --force-recreate - name: Check Podman images diff --git a/nginx/custom-nginx.conf b/nginx/custom-nginx.conf index 6a8a4e6c2..8fe576373 100644 --- a/nginx/custom-nginx.conf +++ b/nginx/custom-nginx.conf @@ -8,12 +8,12 @@ server { } # Serve static files from the Django app - location /server/static/ { + location /static/ { alias /nginx/static/; } # Serve uploaded files from the Django app - location /server/upload/ { + location /upload/ { alias /nginx/upload/; }