| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| package docker |
|
|
| import ( |
| "context" |
| "fmt" |
|
|
| "github.com/docker/go-connections/nat" |
| "github.com/testcontainers/testcontainers-go" |
| "github.com/testcontainers/testcontainers-go/wait" |
| ) |
|
|
| const Text2VecContextionary = "text2vec-contextionary" |
|
|
| func startT2VContextionary(ctx context.Context, networkName, contextionaryImage string) (*DockerContainer, error) { |
| image := "semitechnologies/contextionary:en0.16.0-v1.2.1" |
| if len(contextionaryImage) > 0 { |
| image = contextionaryImage |
| } |
| port := nat.Port("9999/tcp") |
| container, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{ |
| ContainerRequest: testcontainers.ContainerRequest{ |
| Image: image, |
| Hostname: Text2VecContextionary, |
| Networks: []string{networkName}, |
| NetworkAliases: map[string][]string{ |
| networkName: {Text2VecContextionary}, |
| }, |
| Name: Text2VecContextionary, |
| Env: map[string]string{ |
| "OCCURRENCE_WEIGHT_LINEAR_FACTOR": "0.75", |
| "EXTENSIONS_STORAGE_MODE": "weaviate", |
| "EXTENSIONS_STORAGE_ORIGIN": fmt.Sprintf("http://%s:8080", Weaviate1), |
| }, |
| ExposedPorts: []string{"9999/tcp"}, |
| AutoRemove: true, |
| WaitingFor: wait.ForListeningPort(port), |
| }, |
| Started: true, |
| Reuse: true, |
| }) |
| if err != nil { |
| return nil, err |
| } |
| uri, err := container.PortEndpoint(ctx, port, "") |
| if err != nil { |
| return nil, err |
| } |
| envSettings := make(map[string]string) |
| envSettings["CONTEXTIONARY_URL"] = fmt.Sprintf("%s:%s", Text2VecContextionary, port.Port()) |
| endpoints := make(map[EndpointName]endpoint) |
| endpoints[HTTP] = endpoint{port, uri} |
| return &DockerContainer{Text2VecContextionary, endpoints, container, envSettings}, nil |
| } |
|
|