Skip to content

Commit

Permalink
config: Remove muscle client container
Browse files Browse the repository at this point in the history
  • Loading branch information
drikusroor committed Feb 7, 2024
1 parent a1a65b1 commit 4d15570
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions nginx/custom-nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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/;
}

Expand Down

0 comments on commit 4d15570

Please sign in to comment.