diff options
author | 2024-06-13 15:13:29 +0100 | |
---|---|---|
committer | 2024-06-13 15:13:29 +0100 | |
commit | f22ad53ecdc163326e91e1e59a0207084e038259 (patch) | |
tree | 280caceab6050e7689e14710690fd4da3670f719 | |
parent | Fix tests (diff) | |
parent | Fix site startup command used in docker-compose.yml (#3093) (diff) |
Merge branch 'main' into use-itertools-batched
-rw-r--r-- | .github/workflows/lint-test.yml | 1 | ||||
-rw-r--r-- | docker-compose.yml | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 55a71d591..67a2725e9 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -42,6 +42,7 @@ jobs: # and add it to the ALLOWED_LICENSE variable - name: Check Dependencies License run: | + poetry self add poetry-plugin-export pip-licenses --allow-only="$ALLOWED_LICENSE" \ --package $(poetry export -f requirements.txt --without-hashes | sed "s/==.*//g" | tr "\n" " ") diff --git a/docker-compose.yml b/docker-compose.yml index 727c72566..9dd7e682c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: redis: logging : *default-logging restart: unless-stopped - image: redis:5.0.9 + image: redis:latest ports: - "127.0.0.1:6379:6379" @@ -59,7 +59,7 @@ services: logging : *default-logging restart: unless-stopped image: ghcr.io/python-discord/site:latest - command: ["run", "--debug"] + command: ["python", "manage.py", "run"] networks: default: aliases: |