You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# racket-docker
2
2
3
-
Docker images for various Racket versions available on DockerHub as [`racket/racket:<version>`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.17 REPL:
3
+
Docker images for various Racket versions available on DockerHub as [`racket/racket:<version>`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.18 REPL:
4
4
5
5
```
6
-
$ docker run -it racket/racket:8.17-full
6
+
$ docker run -it racket/racket:8.18-full
7
7
```
8
8
9
9
#### Normal images
@@ -16,7 +16,7 @@ These images use the `minimal-install` of Racket to avoid pulling in things like
16
16
DrRacket or Scribble. This also means many `raco` commands such as `raco make`
17
17
will be missing; install the `compiler-lib` package to get most of the standard
18
18
`raco` commands. Alternatively, use the "full" images instead such as
19
-
`racket/racket:8.17-full`.
19
+
`racket/racket:8.18-full`.
20
20
21
21
Versions: 6.1 and above. Racket CS images are available for 7.4 and above.
22
22
@@ -44,12 +44,14 @@ the full distribution of the CS variant of Racket 7.9.
44
44
45
45
#### Racket before Chez (BC) images
46
46
47
-
As of the 8.0 release, Racket BC images are tagged with `-bc` and
48
-
`-bc-full`. For example, `racket/racket:8.0-bc-full` is the full
49
-
distribution of the BC variant of Racket 8.0, whereas
47
+
As of the 8.0 release, Racket BC images are tagged with `-bc`
48
+
and `-bc-full`. For example, `racket/racket:8.0-bc-full` is
49
+
the full distribution of the BC variant of Racket 8.0, whereas
50
50
`racket/racket:7.9-full` is the full distribution of the BC variant of
51
51
Racket 7.9 (before CS was made the default).
52
52
53
+
Racket BC images are only available up to version 8.17.
0 commit comments