Skip to content

Commit bd4a897

Browse files
committed
Versionator Updating versions for python and package.
1 parent 47e7e6c commit bd4a897

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

Diff for: README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ The Full Images use the base Python Docker images as their parent. These images
8080
To pull the latest full version:
8181

8282
```bash
83-
docker pull ghcr.io/multi-py/python-celery:py3.10-LATEST
83+
docker pull ghcr.io/multi-py/python-celery:py3.11-LATEST
8484
```
8585

8686
To include it in the dockerfile instead:
8787

8888
```dockerfile
89-
FROM ghcr.io/multi-py/python-celery:py3.10-LATEST
89+
FROM ghcr.io/multi-py/python-celery:py3.11-LATEST
9090
```
9191

9292
### Using the Slim Image
@@ -96,13 +96,13 @@ The Slim Images use the base Python Slim Docker images as their parent. These im
9696
To pull the latest slim version:
9797

9898
```bash
99-
docker pull ghcr.io/multi-py/python-celery:py3.10-slim-LATEST
99+
docker pull ghcr.io/multi-py/python-celery:py3.11-slim-LATEST
100100
```
101101

102102
To include it in the dockerfile instead:
103103

104104
```dockerfile
105-
FROM ghcr.io/multi-py/python-celery:py3.10-slim-LATEST
105+
FROM ghcr.io/multi-py/python-celery:py3.11-slim-LATEST
106106
```
107107

108108

@@ -117,13 +117,13 @@ In theory these images are smaller than even the slim images, but this amounts t
117117
To pull the latest alpine version:
118118

119119
```bash
120-
docker pull ghcr.io/multi-py/python-celery:py3.10-alpine-LATEST
120+
docker pull ghcr.io/multi-py/python-celery:py3.11-alpine-LATEST
121121
```
122122

123123
To include it in the dockerfile instead:
124124

125125
```dockerfile
126-
FROM ghcr.io/multi-py/python-celery:py3.10-alpine-LATEST
126+
FROM ghcr.io/multi-py/python-celery:py3.11-alpine-LATEST
127127
```
128128

129129

@@ -133,9 +133,9 @@ FROM ghcr.io/multi-py/python-celery:py3.10-alpine-LATEST
133133
It's also possible to copy just the Python packages themselves. This is particularly useful when you want to use the precompiled libraries from multiple containers.
134134

135135
```dockerfile
136-
FROM python:3.10
136+
FROM python:3.11
137137

138-
COPY --from=ghcr.io/multi-py/python-celery:py3.10-slim-LATEST /usr/local/lib/python3.10/site-packages/* /usr/local/lib/python3.10/site-packages/
138+
COPY --from=ghcr.io/multi-py/python-celery:py3.11-slim-LATEST /usr/local/lib/python3.11/site-packages/* /usr/local/lib/python3.11/site-packages/
139139
```
140140

141141
### Add Your App
@@ -150,7 +150,7 @@ By default the celery application should be inside the package in a variable nam
150150
If you are using pip to install dependencies your dockerfile could look like this-
151151

152152
```dockerfile
153-
FROM ghcr.io/multi-py/python-celery:py3.10-5.2.7
153+
FROM ghcr.io/multi-py/python-celery:py3.11-5.2.7
154154

155155
COPY requirements /requirements
156156
RUN pip install --no-cache-dir -r /requirements
@@ -244,11 +244,11 @@ Defaults to 30 seconds.
244244

245245
This project actively supports these Python versions:
246246

247+
* 3.11
247248
* 3.10
248249
* 3.9
249250
* 3.8
250251
* 3.7
251-
* 3.6
252252

253253

254254
## Image Variants
@@ -293,43 +293,43 @@ If you get use out of these containers please consider sponsoring me using Githu
293293
</center>
294294

295295
## Tags
296-
* Recommended Image: `ghcr.io/multi-py/python-celery:py3.10-5.2.7`
297-
* Slim Image: `ghcr.io/multi-py/python-celery:py3.10-slim-5.2.7`
296+
* Recommended Image: `ghcr.io/multi-py/python-celery:py3.11-5.2.7`
297+
* Slim Image: `ghcr.io/multi-py/python-celery:py3.11-slim-5.2.7`
298298

299299
Tags are based on the package version, python version, and the upstream container the container is based on.
300300

301301
| celery Version | Python Version | Full Container | Slim Container | Alpine Container |
302302
|-----------------------|----------------|----------------|----------------|------------------|
303+
| latest | 3.11 | py3.11-latest | py3.11-slim-latest | py3.11-alpine-latest |
303304
| latest | 3.10 | py3.10-latest | py3.10-slim-latest | py3.10-alpine-latest |
304305
| latest | 3.9 | py3.9-latest | py3.9-slim-latest | py3.9-alpine-latest |
305306
| latest | 3.8 | py3.8-latest | py3.8-slim-latest | py3.8-alpine-latest |
306307
| latest | 3.7 | py3.7-latest | py3.7-slim-latest | py3.7-alpine-latest |
307-
| latest | 3.6 | py3.6-latest | py3.6-slim-latest | py3.6-alpine-latest |
308+
| 5.2.7 | 3.11 | py3.11-5.2.7 | py3.11-slim-5.2.7 | py3.11-alpine-5.2.7 |
308309
| 5.2.7 | 3.10 | py3.10-5.2.7 | py3.10-slim-5.2.7 | py3.10-alpine-5.2.7 |
309310
| 5.2.7 | 3.9 | py3.9-5.2.7 | py3.9-slim-5.2.7 | py3.9-alpine-5.2.7 |
310311
| 5.2.7 | 3.8 | py3.8-5.2.7 | py3.8-slim-5.2.7 | py3.8-alpine-5.2.7 |
311312
| 5.2.7 | 3.7 | py3.7-5.2.7 | py3.7-slim-5.2.7 | py3.7-alpine-5.2.7 |
312-
| 5.2.7 | 3.6 | py3.6-5.2.7 | py3.6-slim-5.2.7 | py3.6-alpine-5.2.7 |
313+
| 5.2.6 | 3.11 | py3.11-5.2.6 | py3.11-slim-5.2.6 | py3.11-alpine-5.2.6 |
313314
| 5.2.6 | 3.10 | py3.10-5.2.6 | py3.10-slim-5.2.6 | py3.10-alpine-5.2.6 |
314315
| 5.2.6 | 3.9 | py3.9-5.2.6 | py3.9-slim-5.2.6 | py3.9-alpine-5.2.6 |
315316
| 5.2.6 | 3.8 | py3.8-5.2.6 | py3.8-slim-5.2.6 | py3.8-alpine-5.2.6 |
316317
| 5.2.6 | 3.7 | py3.7-5.2.6 | py3.7-slim-5.2.6 | py3.7-alpine-5.2.6 |
317-
| 5.2.6 | 3.6 | py3.6-5.2.6 | py3.6-slim-5.2.6 | py3.6-alpine-5.2.6 |
318+
| 5.2.5 | 3.11 | py3.11-5.2.5 | py3.11-slim-5.2.5 | py3.11-alpine-5.2.5 |
318319
| 5.2.5 | 3.10 | py3.10-5.2.5 | py3.10-slim-5.2.5 | py3.10-alpine-5.2.5 |
319320
| 5.2.5 | 3.9 | py3.9-5.2.5 | py3.9-slim-5.2.5 | py3.9-alpine-5.2.5 |
320321
| 5.2.5 | 3.8 | py3.8-5.2.5 | py3.8-slim-5.2.5 | py3.8-alpine-5.2.5 |
321322
| 5.2.5 | 3.7 | py3.7-5.2.5 | py3.7-slim-5.2.5 | py3.7-alpine-5.2.5 |
322-
| 5.2.5 | 3.6 | py3.6-5.2.5 | py3.6-slim-5.2.5 | py3.6-alpine-5.2.5 |
323+
| 5.2.4 | 3.11 | py3.11-5.2.4 | py3.11-slim-5.2.4 | py3.11-alpine-5.2.4 |
323324
| 5.2.4 | 3.10 | py3.10-5.2.4 | py3.10-slim-5.2.4 | py3.10-alpine-5.2.4 |
324325
| 5.2.4 | 3.9 | py3.9-5.2.4 | py3.9-slim-5.2.4 | py3.9-alpine-5.2.4 |
325326
| 5.2.4 | 3.8 | py3.8-5.2.4 | py3.8-slim-5.2.4 | py3.8-alpine-5.2.4 |
326327
| 5.2.4 | 3.7 | py3.7-5.2.4 | py3.7-slim-5.2.4 | py3.7-alpine-5.2.4 |
327-
| 5.2.4 | 3.6 | py3.6-5.2.4 | py3.6-slim-5.2.4 | py3.6-alpine-5.2.4 |
328+
| 5.2.3 | 3.11 | py3.11-5.2.3 | py3.11-slim-5.2.3 | py3.11-alpine-5.2.3 |
328329
| 5.2.3 | 3.10 | py3.10-5.2.3 | py3.10-slim-5.2.3 | py3.10-alpine-5.2.3 |
329330
| 5.2.3 | 3.9 | py3.9-5.2.3 | py3.9-slim-5.2.3 | py3.9-alpine-5.2.3 |
330331
| 5.2.3 | 3.8 | py3.8-5.2.3 | py3.8-slim-5.2.3 | py3.8-alpine-5.2.3 |
331332
| 5.2.3 | 3.7 | py3.7-5.2.3 | py3.7-slim-5.2.3 | py3.7-alpine-5.2.3 |
332-
| 5.2.3 | 3.6 | py3.6-5.2.3 | py3.6-slim-5.2.3 | py3.6-alpine-5.2.3 |
333333

334334

335335
### Older Tags

0 commit comments

Comments
 (0)