Docker Library Bot 2 месяцев назад
Родитель
Сommit
60b082a1ca
4 измененных файлов с 10 добавлено и 12 удалено
  1. 1 3
      arangodb/README.md
  2. 6 6
      clickhouse/README.md
  3. 1 1
      composer/README.md
  4. 2 2
      neo4j/README.md

+ 1 - 3
arangodb/README.md

@@ -24,9 +24,7 @@ WARNING:
 
 
 # Supported tags and respective `Dockerfile` links
 # Supported tags and respective `Dockerfile` links
 
 
--	[`3.12`, `3.12.7`, `3.12.7.1`, `latest`](https://github.com/arangodb/arangodb-docker/blob/61e5a446605aeee6df0ffed534d221bd63a35ee3/alpine/3.12.7.1/Dockerfile)
-
--	[`3.12.7.0`](https://github.com/arangodb/arangodb-docker/blob/61e5a446605aeee6df0ffed534d221bd63a35ee3/alpine/3.12.7/Dockerfile)
+-	[`3.12`, `3.12.7`, `3.12.7.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/e066520e4660de822967cb7e7fc3f1447d224585/alpine/3.12.7.2/Dockerfile)
 
 
 # Quick reference (cont.)
 # Quick reference (cont.)
 
 

+ 6 - 6
clickhouse/README.md

@@ -24,15 +24,15 @@ WARNING:
 
 
 # Supported tags and respective `Dockerfile` links
 # Supported tags and respective `Dockerfile` links
 
 
--	[`latest`, `jammy`, `25.12`, `25.12-jammy`, `25.12.4`, `25.12.4-jammy`, `25.12.4.35`, `25.12.4.35-jammy`](https://github.com/ClickHouse/docker-library/blob/69243cde1850a965e5bd88e04d6c43d1bf47d324/server/25.12.4.35/Dockerfile.ubuntu)
+-	[`latest`, `jammy`, `25.12`, `25.12-jammy`, `25.12.4`, `25.12.4-jammy`, `25.12.4.35`, `25.12.4.35-jammy`](https://github.com/ClickHouse/docker-library/blob/2c81da116266ab26b274d2afe0f89c71916d1fbf/server/25.12.4.35/Dockerfile.ubuntu)
 
 
--	[`25.11`, `25.11-jammy`, `25.11.7`, `25.11.7-jammy`, `25.11.7.41`, `25.11.7.41-jammy`](https://github.com/ClickHouse/docker-library/blob/69243cde1850a965e5bd88e04d6c43d1bf47d324/server/25.11.7.41/Dockerfile.ubuntu)
+-	[`25.11`, `25.11-jammy`, `25.11.8`, `25.11.8-jammy`, `25.11.8.25`, `25.11.8.25-jammy`](https://github.com/ClickHouse/docker-library/blob/2c81da116266ab26b274d2afe0f89c71916d1fbf/server/25.11.8.25/Dockerfile.ubuntu)
 
 
--	[`25.10`, `25.10-jammy`, `25.10.5`, `25.10.5-jammy`, `25.10.5.40`, `25.10.5.40-jammy`](https://github.com/ClickHouse/docker-library/blob/69243cde1850a965e5bd88e04d6c43d1bf47d324/server/25.10.5.40/Dockerfile.ubuntu)
+-	[`25.10`, `25.10-jammy`, `25.10.5`, `25.10.5-jammy`, `25.10.5.40`, `25.10.5.40-jammy`](https://github.com/ClickHouse/docker-library/blob/2c81da116266ab26b274d2afe0f89c71916d1fbf/server/25.10.5.40/Dockerfile.ubuntu)
 
 
--	[`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.15`, `25.8.15-jammy`, `25.8.15.35`, `25.8.15.35-jammy`](https://github.com/ClickHouse/docker-library/blob/69243cde1850a965e5bd88e04d6c43d1bf47d324/server/25.8.15.35/Dockerfile.ubuntu)
+-	[`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.15`, `25.8.15-jammy`, `25.8.15.35`, `25.8.15.35-jammy`](https://github.com/ClickHouse/docker-library/blob/2c81da116266ab26b274d2afe0f89c71916d1fbf/server/25.8.15.35/Dockerfile.ubuntu)
 
 
--	[`25.3`, `25.3-jammy`, `25.3.13`, `25.3.13-jammy`, `25.3.13.19`, `25.3.13.19-jammy`](https://github.com/ClickHouse/docker-library/blob/69243cde1850a965e5bd88e04d6c43d1bf47d324/server/25.3.13.19/Dockerfile.ubuntu)
+-	[`25.3`, `25.3-jammy`, `25.3.13`, `25.3.13-jammy`, `25.3.13.19`, `25.3.13.19-jammy`](https://github.com/ClickHouse/docker-library/blob/2c81da116266ab26b274d2afe0f89c71916d1fbf/server/25.3.13.19/Dockerfile.ubuntu)
 
 
 # Quick reference (cont.)
 # Quick reference (cont.)
 
 
@@ -121,7 +121,7 @@ docker rm some-clickhouse-server
 You can expose your ClickHouse running in docker by [mapping a particular port](https://docs.docker.com/config/containers/container-networking/) from inside the container using host ports:
 You can expose your ClickHouse running in docker by [mapping a particular port](https://docs.docker.com/config/containers/container-networking/) from inside the container using host ports:
 
 
 ```bash
 ```bash
-docker run -d -p 18123:8123 -p19000:9000 -e CLICKHOUSE_PASSWORD=changeme --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse
+docker run -d -p 18123:8123 -p 19000:9000 -e CLICKHOUSE_PASSWORD=changeme --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse
 echo 'SELECT version()' | curl 'http://localhost:18123/?password=changeme' --data-binary @-
 echo 'SELECT version()' | curl 'http://localhost:18123/?password=changeme' --data-binary @-
 ```
 ```
 
 

+ 1 - 1
composer/README.md

@@ -24,7 +24,7 @@ WARNING:
 
 
 # Supported tags and respective `Dockerfile` links
 # Supported tags and respective `Dockerfile` links
 
 
--	[`2.9.4`, `2.9`, `2`, `latest`](https://github.com/composer/docker/blob/6f7ad7e7f514205660962c898448a3a4f07829a2/latest/Dockerfile)
+-	[`2.9.5`, `2.9`, `2`, `latest`](https://github.com/composer/docker/blob/d847d1738962086f205984ed253cace363731af7/latest/Dockerfile)
 
 
 -	[`2.2.26`, `2.2`](https://github.com/composer/docker/blob/fa961e74c7bd38b762e5a358eca4794e86f0464c/2.2/Dockerfile)
 -	[`2.2.26`, `2.2`](https://github.com/composer/docker/blob/fa961e74c7bd38b762e5a358eca4794e86f0464c/2.2/Dockerfile)
 
 

+ 2 - 2
neo4j/README.md

@@ -48,9 +48,9 @@ WARNING:
 
 
 -	[`5.26.20-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d4e4e90a496407cf88ec3afa022e181fd6e5fd8e/5.26.20/ubi9/enterprise/Dockerfile)
 -	[`5.26.20-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d4e4e90a496407cf88ec3afa022e181fd6e5fd8e/5.26.20/ubi9/enterprise/Dockerfile)
 
 
--	[`4.4.46`, `4.4.46-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/community/Dockerfile)
+-	[`4.4.47`, `4.4.47-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/4f3993df7e2ce064be1f1e66e4219f71aef4aa6c/4.4.47/bullseye/community/Dockerfile)
 
 
--	[`4.4.46-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/enterprise/Dockerfile)
+-	[`4.4.47-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/4f3993df7e2ce064be1f1e66e4219f71aef4aa6c/4.4.47/bullseye/enterprise/Dockerfile)
 
 
 # Quick reference (cont.)
 # Quick reference (cont.)