Skip to content

Commit

Permalink
Merge pull request #98 from stuartmaxwell/gunicorn-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmaxwell authored Oct 1, 2024
2 parents 82df494 + 4a595ce commit 4ebd26b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
app:
image: ghcr.io/stuartmaxwell/stuartm.nz:latest
entrypoint: /app/entrypoint.sh
command: gunicorn --worker-tmp-dir /dev/shm --workers=2 --worker-class=gthread --bind 0.0.0.0:8000 config.wsgi
command: uv run --no-cache gunicorn --worker-tmp-dir /dev/shm --workers=2 --worker-class=gthread --bind 0.0.0.0:8000 config.wsgi
user: "1000"
environment:
- "SECRET_KEY=${SECRET_KEY}"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
app:
image: ghcr.io/stuartmaxwell/stuartm.nz:latest
entrypoint: /app/entrypoint.sh
command: gunicorn --worker-tmp-dir /dev/shm --workers=2 --worker-class=gthread --bind 0.0.0.0:8000 config.wsgi
command: uv run --no-cache gunicorn --worker-tmp-dir /dev/shm --workers=2 --worker-class=gthread --bind 0.0.0.0:8000 config.wsgi
user: "1000"
environment:
- "SECRET_KEY=${SECRET_KEY}"
Expand Down

0 comments on commit 4ebd26b

Please sign in to comment.