Skip to content

Commit

Permalink
fix: back to unprivileged port for runserver (#3701)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpcross authored Mar 11, 2024
1 parent 1a39b42 commit e2365e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/mailarchive/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ securityContext: {}

service:
type: ClusterIP
port: 80
port: 8000

ingress:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion docker/app-sandbox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ COPY docker/configs/settings_docker.py \
ENTRYPOINT ["docker-entrypoint.sh"]

# runserver
CMD ["./backend/manage.py", "runserver", "0.0.0.0:80"]
CMD ["./backend/manage.py", "runserver", "0.0.0.0:8000"]

# gunicorn
# CMD ["gunicorn", "-c", "/gunicorn.conf.py", "backend.mlarchive.wsgi:application"]

0 comments on commit e2365e6

Please sign in to comment.