diff options
author | 2020-11-14 23:58:45 +0100 | |
---|---|---|
committer | 2020-11-14 23:58:45 +0100 | |
commit | 04764a706a80ca40919bb149860a57a868ea6737 (patch) | |
tree | 5bf6382b77f371c134f9eb00dbdd31b36f690bc2 /docker-compose.yml | |
parent | Add Notion to sponsors (diff) | |
parent | Don't call gunicorn using os.system, patch sys.argv and call the module (diff) |
Merge pull request #422 from python-discord/get_rid_of_uwsgi
Get rid of UWSGI, replace with gunicorn
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 7287d8d5..1f49f1f3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,7 +24,7 @@ services: web: build: context: . - dockerfile: docker/Dockerfile + dockerfile: Dockerfile command: ["run", "--debug"] networks: default: @@ -45,6 +45,7 @@ services: METRICITY_DB_URL: postgres://pysite:pysite@postgres:5432/metricity SECRET_KEY: suitable-for-development-only STATIC_ROOT: /var/www/static + DEBUG: 1 volumes: staticfiles: |