Skip to content

Commit c9cb457

Browse files
Run update.sh
1 parent 206fad1 commit c9cb457

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

clickhouse/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ WARNING:
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.4`, `25.7.4-jammy`, `25.7.4.11`, `25.7.4.11-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.7.4.11/Dockerfile.ubuntu)
27+
- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.5`, `25.7.5-jammy`, `25.7.5.34`, `25.7.5.34-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.7.5.34/Dockerfile.ubuntu)
2828

29-
- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.6.8.10/Dockerfile.ubuntu)
29+
- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.6.8.10/Dockerfile.ubuntu)
3030

31-
- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.5.9.14/Dockerfile.ubuntu)
31+
- [`25.5`, `25.5-jammy`, `25.5.10`, `25.5.10-jammy`, `25.5.10.95`, `25.5.10.95-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.5.10.95/Dockerfile.ubuntu)
3232

33-
- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.3.6.56/Dockerfile.ubuntu)
33+
- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.3.6.56/Dockerfile.ubuntu)
3434

3535
# Quick reference (cont.)
3636

fedora/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ WARNING:
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ff23717c9acc1ab32ef37417b4fee194a1af1a65/x86_64/Dockerfile)
27+
- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e9fe9c60f8e2039097a47f8cb24586cdfd049382/x86_64/Dockerfile)
2828

29-
- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/53fba86f68cfa54ec3bf62495b871c13128ce38a/x86_64/Dockerfile)
29+
- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e9b4abb66480fc5fa0b6353bb3eaf163371e3ab0/x86_64/Dockerfile)
3030

31-
- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e39e58d83994f1e4535f6f7748bd634ac9beb558/x86_64/Dockerfile)
31+
- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ec7803f6ed24683e124c16e8199c0f7c8199752a/x86_64/Dockerfile)
3232

3333
# Quick reference (cont.)
3434

golang/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a
142142
The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management):
143143

144144
```dockerfile
145-
FROM golang:1.24
145+
FROM golang:1.25
146146

147147
WORKDIR /usr/src/app
148148

@@ -168,27 +168,27 @@ $ docker run -it --rm --name my-running-app my-golang-app
168168
There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like:
169169

170170
```console
171-
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 go build -v
171+
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.25 go build -v
172172
```
173173

174174
This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container.
175175

176176
```console
177-
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 make
177+
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.25 make
178178
```
179179

180180
## Cross-compile your app inside the Docker container
181181

182182
If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`):
183183

184184
```console
185-
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.24 go build -v
185+
$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.25 go build -v
186186
```
187187

188188
Alternatively, you can build for multiple platforms at once:
189189

190190
```console
191-
$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 bash
191+
$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.25 bash
192192
$ for GOOS in darwin linux; do
193193
> for GOARCH in 386 amd64; do
194194
> export GOOS GOARCH

percona/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ WARNING:
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`8.0.42-33-centos`, `8.0-centos`, `8-centos`, `8.0.42-33`, `8.0`, `8`, `ps-8.0.42-33`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/9cd781adb27010da39faab5daca25c1e72db0af4/percona-server-8.0/Dockerfile-dockerhub)
27+
- [`8.0.43-34-centos`, `8.0-centos`, `8-centos`, `8.0.43-34`, `8.0`, `8`, `ps-8.0.43-34`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/1a5a6f51cda0ad561e5afcbd9b1ec9e2dd3564d1/percona-server-8.0/Dockerfile-dockerhub)
2828

2929
- [`psmdb-8.0.8`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-8.0/Dockerfile-dockerhub)
3030

rabbitmq/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ WARNING:
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`4.2.0-beta.1`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/Dockerfile)
27+
- [`4.2.0-beta.2`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/9fec503f1e0f36c21a3d765828a55f2831140031/4.2-rc/ubuntu/Dockerfile)
2828

29-
- [`4.2.0-beta.1-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile)
29+
- [`4.2.0-beta.2-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile)
3030

31-
- [`4.2.0-beta.1-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/Dockerfile)
31+
- [`4.2.0-beta.2-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/9fec503f1e0f36c21a3d765828a55f2831140031/4.2-rc/alpine/Dockerfile)
3232

33-
- [`4.2.0-beta.1-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile)
33+
- [`4.2.0-beta.2-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile)
3434

3535
- [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/b499e6df24978959d526acddcdc4a4842091533b/4.1/ubuntu/Dockerfile)
3636

xwiki/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ WARNING:
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`17`, `17.6`, `17.6.0`, `17-mysql-tomcat`, `17.6-mysql-tomcat`, `17.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mysql-tomcat/Dockerfile)
27+
- [`17`, `17.7`, `17.7.0`, `17-mysql-tomcat`, `17.7-mysql-tomcat`, `17.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/mysql-tomcat/Dockerfile)
2828

29-
- [`17-postgres-tomcat`, `17.6-postgres-tomcat`, `17.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/postgres-tomcat/Dockerfile)
29+
- [`17-postgres-tomcat`, `17.7-postgres-tomcat`, `17.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/postgres-tomcat/Dockerfile)
3030

31-
- [`17-mariadb-tomcat`, `17.6-mariadb-tomcat`, `17.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mariadb-tomcat/Dockerfile)
31+
- [`17-mariadb-tomcat`, `17.7-mariadb-tomcat`, `17.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/mariadb-tomcat/Dockerfile)
3232

3333
- [`17.4`, `17.4.4`, `17.4-mysql-tomcat`, `17.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mysql-tomcat/Dockerfile)
3434

3535
- [`17.4-postgres-tomcat`, `17.4.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/postgres-tomcat/Dockerfile)
3636

3737
- [`17.4-mariadb-tomcat`, `17.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mariadb-tomcat/Dockerfile)
3838

39-
- [`16`, `16.10`, `16.10.10`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mysql-tomcat/Dockerfile)
39+
- [`16`, `16.10`, `16.10.11`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/mysql-tomcat/Dockerfile)
4040

41-
- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/postgres-tomcat/Dockerfile)
41+
- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/postgres-tomcat/Dockerfile)
4242

43-
- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mariadb-tomcat/Dockerfile)
43+
- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/mariadb-tomcat/Dockerfile)
4444

4545
# Quick reference (cont.)
4646

0 commit comments

Comments
 (0)