diff options
author | 2023-05-30 18:59:41 +0100 | |
---|---|---|
committer | 2023-05-30 17:59:41 +0000 | |
commit | 0cef9e78c2fb3cbfcd400a782b39ca83c8a07746 (patch) | |
tree | 598822f962f41a15342dbfbce6ba18365c6ef29a /docker-compose.yml | |
parent | Bump pip-licenses from 4.3.1 to 4.3.2 (#2604) (diff) |
Temporarily remove suport for evaling under 3.10 (#2618)
* Temporarily remove suport for evaling under 3.10
This is until snekbox supports multi-version natively
https://github.com/python-discord/snekbox/issues/158
* Remove special case 3.11 snekbox container
3.11 is the default in snekbox:latest now, so no need to have a special container. This also removes all notion of there being diferent containers for different snekbox versions
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 8b4c6b0a3..727c72566 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -54,18 +54,6 @@ services: ports: - "127.0.0.1:8060:8060" privileged: true - profiles: - - "3.10" - - snekbox-311: - logging : *default-logging - restart: unless-stopped - image: ghcr.io/python-discord/snekbox:3.11-dev - init: true - ipc: none - ports: - - "127.0.0.1:8065:8060" - privileged: true web: logging : *default-logging @@ -101,13 +89,12 @@ services: depends_on: - web - redis - - snekbox-311 + - snekbox env_file: - .env environment: API_KEYS_SITE_API: "badbot13m0n8f570f942013fc818f234916ca531" URLS_SITE_API: "http://web:8000/api" URLS_SNEKBOX_EVAL_API: "http://snekbox:8060/eval" - URLS_SNEKBOX_311_EVAL_API: "http://snekbox-311:8060/eval" REDIS_HOST: "redis" STATS_STATSD_HOST: "http://localhost" |