Skip to content

Commit f1b0b07

Browse files
authored
Add javadoc for supported images (#7422)
1 parent 7fe978e commit f1b0b07

File tree

41 files changed

+92
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+92
-5
lines changed

modules/azure/src/main/java/org/testcontainers/containers/CosmosDBEmulatorContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
/**
99
* Testcontainers implementation for CosmosDB Emulator.
1010
* <p>
11+
* Supported image: {@code mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator}
12+
* <p>
1113
* Exposed ports: 8081
1214
*/
1315
public class CosmosDBEmulatorContainer extends GenericContainer<CosmosDBEmulatorContainer> {

modules/cassandra/src/main/java/org/testcontainers/containers/CassandraContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
/**
2222
* Testcontainers implementation for Apache Cassandra.
2323
* <p>
24+
* Supported image: {@code cassandra}
25+
* <p>
2426
* Exposed ports: 9042
2527
*/
2628
public class CassandraContainer<SELF extends CassandraContainer<SELF>> extends GenericContainer<SELF> {

modules/clickhouse/src/main/java/org/testcontainers/clickhouse/ClickHouseContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
/**
1212
* Testcontainers implementation for ClickHouse.
1313
* <p>
14+
* Supported image: {@code clickhouse/clickhouse-server}
15+
* <p>
1416
* Exposed ports:
1517
* <ul>
1618
* <li>Database: 8123</li>

modules/cockroachdb/src/main/java/org/testcontainers/containers/CockroachContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
/**
1010
* Testcontainers implementation for CockroachDB.
1111
* <p>
12+
* Supported image: {@code cockroachdb/cockroach}
13+
* <p>
1214
* Exposed ports:
1315
* <ul>
1416
* <li>Database: 26257</li>

modules/consul/src/main/java/org/testcontainers/consul/ConsulContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
/**
1616
* Testcontainers implementation for Consul.
1717
* <p>
18+
* Supported images: {@code hashicorp/consul}, {@code consul}
19+
* <p>
1820
* Exposed ports:
1921
* <ul>
2022
* <li>HTTP: 8500</li>

modules/couchbase/src/main/java/org/testcontainers/couchbase/CouchbaseContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
/**
5151
* Testcontainers implementation for Couchbase.
5252
* <p>
53+
* Supported image: {@code couchbase/server}
54+
* <p>
5355
* Exposed ports:
5456
* <ul>
5557
* <li>Console: 8091</li>

modules/cratedb/src/main/java/org/testcontainers/cratedb/CrateDBContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
/**
1111
* Testcontainers implementation for CrateDB.
1212
* <p>
13+
* Supported image: {@code crate}
14+
* <p>
1315
* Exposed ports:
1416
* <ul>
1517
* <li>Database: 5432</li>

modules/db2/src/main/java/org/testcontainers/containers/Db2Container.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
/**
1212
* Testcontainers implementation for IBM DB2.
1313
* <p>
14+
* Supported images: {@code icr.io/db2_community/db2}, {@code ibmcom/db2}
15+
* <p>
1416
* Exposed ports:
1517
* <ul>
1618
* <li>Database: 50000</li>

modules/elasticsearch/src/main/java/org/testcontainers/elasticsearch/ElasticsearchContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
/**
2626
* Testcontainers implementation for Elasticsearch.
2727
* <p>
28+
* Supported image: {@code docker.elastic.co/elasticsearch/elasticsearch}
29+
* <p>
2830
* Exposed ports:
2931
* <ul>
3032
* <li>HTTP: 9200</li>

modules/gcloud/src/main/java/org/testcontainers/containers/BigQueryEmulatorContainer.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
/**
66
* Testcontainers implementation for BigQuery.
7+
* <p>
8+
* Supported image: {@code ghcr.io/goccy/bigquery-emulator}
9+
* <p>
710
*/
811
public class BigQueryEmulatorContainer extends GenericContainer<BigQueryEmulatorContainer> {
912

0 commit comments

Comments
 (0)