From 4f5b231bdf1df7ba201903cb860ce26e84468e55 Mon Sep 17 00:00:00 2001 From: Ariel Rin Date: Tue, 26 Dec 2023 19:28:34 +1000 Subject: [PATCH] remove venv (cherry picked from commit 2418023dddc0c9f23f5c03b962664b31a6011f6a) --- docker/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 950cd2d1..39b9d9aa 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -96,7 +96,7 @@ services: container_name: allianceauth_gunicorn <<: [*allianceauth-base] entrypoint: [ - "/opt/venv/bin/gunicorn", + "gunicorn", "myauth.wsgi", "--bind=0.0.0.0:8000", "--workers=3", @@ -109,7 +109,7 @@ services: container_name: allianceauth_worker_beat <<: [*allianceauth-base] entrypoint: [ - "/opt/venv/bin/celery", + "celery", "-A", "myauth", "beat" @@ -118,7 +118,7 @@ services: allianceauth_worker: <<: [*allianceauth-base, *allianceauth-health-checks] entrypoint: [ - "/opt/venv/bin/celery", + "celery", "-A", "myauth", "worker",