mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
14 lines
243 B
Java
14 lines
243 B
Java
package main;
|
|
|
|
import io.ebean.docker.commands.CockroachContainer;
|
|
|
|
public class StartCockroach {
|
|
|
|
public static void main(String[] args) {
|
|
CockroachContainer.builder("v21.2.4")
|
|
.dbName("unit")
|
|
.build()
|
|
.start();
|
|
}
|
|
}
|