diff --git a/docs/modules/data_warehouses/vertica-ce.md b/docs/modules/data_warehouses/vertica-ce.md
new file mode 100644
index 00000000000..07fe843078a
--- /dev/null
+++ b/docs/modules/data_warehouses/vertica-ce.md
@@ -0,0 +1,94 @@
+# Vertica-CE Module
+
+!!! note
+This module is INCUBATING. While it is ready for use and operational in the current version of Testcontainers, it is possible that it may receive breaking changes in the future. See [our contributing guidelines](/contributing/#incubating-modules) for more information on our incubating modules policy.
+
+!!! note
+We will need to get clarification on the license - the docker image provides an _Evaluation_ license which is a 'license to use Licensed Products for
+internal evaluation and testing purposes only, and not for any development, production, distribution or
+commercial purpose' and is only valid for a limited amount of time. It's common to see TestContainers used on both the developer's laptop and in CI/CD pipelines
+so at first glance it seems like we can't use this license... but it seems likely that anyone who needs this module will already have an 'Express' license or better.
+Given this I think it's likely that we can get a carve out but I can't guarantee it, or that their terms won't be too onerous for the project to accept.
+
+[Vertica Analytics Database](https://www.vertica.com/) is a [data warehouse](https://en.wikipedia.org/wiki/Data_warehouse) implemented with a using a [columnar database](https://en.wikipedia.org/wiki/Column-oriented_database). See the [Vertica](https://en.wikipedia.org/wiki/Vertica) Wikipedia article for more details. Vertica also supports SQL access for legacy applications, to simplify initialization of the database, etc.
+
+Data warehouses are usually cloud-native due to the amount of data they store but some vendors provide docker-based __Community Editions__ for use by developers and students who are primarily concerned in learning how to use the tool.
+
+At this time this module is tested like all other relational databases. The contribution of data warehouse specific tests would be welcome.
+
+## Adding this module to your project dependencies
+
+Add the following dependency to your `pom.xml`/`build.gradle` file:
+
+=== "Gradle"
+```groovy
+testImplementation "org.testcontainers:vertica-ce:{{latest_version}}"
+
+// Vertica JDBC driver
+testRuntimeOnly "com.vertica.jdbc:vertica-jdbc:24.1.0-0"
+```
+=== "Maven"
+```xml
+
+ org.testcontainers
+ vertica-ce
+ {{latest_version}}
+ test
+
+
+
+
+ com.vertica.jdbc
+ vertica-jdbc
+ 24.1.0-0
+ } test
+
+```
+}
+!!! hint
+Adding this Testcontainers library JAR will not automatically add the Vertica driver JAR to your project.
+You should ensure that your project has the Vertica driver as a dependency.
+
+## Licenses
+
+I mentioned this in the note above - reading the licenses literally we can't use the docker image
+since the module is likely to be used in CI/CD pipelines that feed into production. However I think we
+can make a strong argument for a carve out since the only people using these CI/CD pipelines will already
+need to have an 'Express' or better license - the purpose of this module is to facilitate software testing,
+not development in isolation from all other resources. We won't know until we ask, and we probably shouldn't
+ask until we have enough done to demonstrate the value of the module to their customers.
+
+This may require a few iterations since we'll need a second (non-customer) carve out sufficiently broad for
+any user to download and build the entire TestContainer repo.
+
+From [Additional License Authorizations for Vertica software products](https://www.microfocus.com/media/documentation/additional-license-authorizations-for-vertica-software-products-documentation.pdf):
+
+!!! block
+Vertica Community Edition may be used for evaluation purposes only and the license for Vertica Community Edition is an
+“Evaluation License” as such term is defined in the then current Micro Focus End User License Agreement (the “EULA”)
+found at https://software.microfocus.com/en-us/legal/software-licensing. The Evaluation License for Vertica Community
+Edition is governed by the terms of the EULA.
+
+From [Micro Focus End User License Agreement](https://www.microfocus.com/media/documentation/micro_focus_end_user_license_agreement.pdf)
+
+!!! block
+. Evaluation Licenses. Except as specifically permitted in the applicable ALA, when Micro Focus and its
+affiliates, respectively deliver and license the Licensed Products solely for evaluation, Customer
+receives a non-transferable, non-sublicensable, non-exclusive license to use Licensed Products for
+internal evaluation and testing purposes only, and not for any development, production, distribution or
+commercial purpose (“Evaluation License”). The term of an Evaluation License will be 30 days
+starting from the date Licensed Product is delivered (i.e., made available for download or physically
+delivered) to Customer (“Evaluation Term”), unless Micro Focus authorizes a different period in
+writing. The Licensed Product is provided “as is” and there are no warranties or obligations for Micro
+Focus to provide support. The Evaluation License terminates at the end of the Evaluation Term, and
+Customer is required to return, or, if Micro Focus so directs, delete and destroy, all copies of such
+Licensed Product and provide Micro Focus with written confirmation of its compliance with this
+provision within 30 days of the end of the Evaluation Term. The Evaluation License for any pre-release
+or beta versions of Licensed Software (“Pre-Release Software”) shall be for a term of 90 days unless
+Micro Focus authorizes a different period in writing. Customer agrees to promptly report to Micro Focus
+all problems (including errors, failures, nonconforming results, and unexpected performances) and any
+comments regarding the Pre-Release Software and to timely respond to all questionnaires submitted
+by Micro Focus regarding the results of Customer’s testing of the Pre-Release Software. Micro Focus
+may choose not to release a final version of the Pre-Release Software or, even if released, to alter
+prices, features, specifications, capabilities, functions, release dates, general availability, or other
+characteristics of the Pre-Release Software.
diff --git a/modules/vertica-ce/README.md b/modules/vertica-ce/README.md
new file mode 100644
index 00000000000..8ab316d45cb
--- /dev/null
+++ b/modules/vertica-ce/README.md
@@ -0,0 +1,12 @@
+# Vertica-CE Module
+
+## Remaining tasks
+
+- [ ] Learn how to use `:jdbc-test` and `AbstractJDBCDriverTest`
+- [ ] Write tests
+- [ ] Finish documentation
+- [ ] Submit PR
+
+## Open questions
+
+- [ ] Should there be a new 'Data Warehouse' category in the documentation?
diff --git a/modules/vertica-ce/Vertica-OT.svg.png b/modules/vertica-ce/Vertica-OT.svg.png
new file mode 100644
index 00000000000..6ff03d7f1eb
Binary files /dev/null and b/modules/vertica-ce/Vertica-OT.svg.png differ
diff --git a/modules/vertica-ce/additional-license-authorizations-for-vertica-software-products-documentation.pdf b/modules/vertica-ce/additional-license-authorizations-for-vertica-software-products-documentation.pdf
new file mode 100644
index 00000000000..dd7cd3f801a
Binary files /dev/null and b/modules/vertica-ce/additional-license-authorizations-for-vertica-software-products-documentation.pdf differ
diff --git a/modules/vertica-ce/build.gradle b/modules/vertica-ce/build.gradle
new file mode 100644
index 00000000000..00f8e357b12
--- /dev/null
+++ b/modules/vertica-ce/build.gradle
@@ -0,0 +1,13 @@
+description = "Testcontainers-Java :: JDBC :: Vertica-CE"
+
+dependencies {
+ annotationProcessor 'com.google.auto.service:auto-service:1.1.1'
+ compileOnly 'com.google.auto.service:auto-service:1.1.1'
+
+ api project(':jdbc')
+
+ testImplementation project(':jdbc-test')
+ testRuntimeOnly 'com.vertica.jdbc:vertica-jdbc:24.1.0-0'
+
+ compileOnly 'org.jetbrains:annotations:24.0.1'
+}
diff --git a/modules/vertica-ce/micro_focus_end_user_license_agreement.pdf b/modules/vertica-ce/micro_focus_end_user_license_agreement.pdf
new file mode 100644
index 00000000000..3407b9a0336
Binary files /dev/null and b/modules/vertica-ce/micro_focus_end_user_license_agreement.pdf differ
diff --git a/modules/vertica-ce/src/main/java/org/testcontainers/containers/VerticaCEContainer.java b/modules/vertica-ce/src/main/java/org/testcontainers/containers/VerticaCEContainer.java
new file mode 100644
index 00000000000..b3ea983c9d3
--- /dev/null
+++ b/modules/vertica-ce/src/main/java/org/testcontainers/containers/VerticaCEContainer.java
@@ -0,0 +1,315 @@
+package org.testcontainers.containers;
+
+import lombok.Getter;
+import org.apache.commons.lang3.StringUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.testcontainers.containers.wait.strategy.LogMessageWaitStrategy;
+import org.testcontainers.utility.DockerImageName;
+
+import java.time.Duration;
+
+/**
+ * TestContainer for Vertica CE databases
+ *
+ * Vertica has three editions: Community, Express, and Premium, plus a few additional products.
+ *
+ * The only edition available at docker hub is the Community Edition.
+ */
+public interface VerticaCETestImages {
+ DockerImageName VERTICA_CE_TEST_IMAGE = DockerImageName.parse("vertica/vertica-ce:24.1.0-0");
+}
diff --git a/modules/vertica-ce/src/test/java/org/testcontainers/containers/jdbc/VerticaJDBCDriverTest.java.sav b/modules/vertica-ce/src/test/java/org/testcontainers/containers/jdbc/VerticaJDBCDriverTest.java.sav
new file mode 100644
index 00000000000..10cf11163b7
--- /dev/null
+++ b/modules/vertica-ce/src/test/java/org/testcontainers/containers/jdbc/VerticaJDBCDriverTest.java.sav
@@ -0,0 +1,26 @@
+package org.testcontainers.containers.jdbc;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.testcontainers.jdbc.AbstractJDBCDriverTest;
+
+import java.util.Arrays;
+import java.util.EnumSet;
+
+// disabled until I can figure out how to use ":jdbc-test"
+
+@RunWith(Parameterized.class)
+public class VerticaJDBCDriverTest extends AbstractJDBCDriverTest {
+
+ @Parameterized.Parameters(name = "{index} - {0}")
+ public static Iterable