testcontainers-go 中的卷

Volumes in testcontainers-go

我有一个 docker-compose 文件,我正在尝试使用 testcontainers-go:

重新创建该文件
version: '3'
services:
  node1:
    image: "osixia/openldap:1.3.0"
    command: ['--copy-service', '--loglevel=debug']
    environment:
      - LDAP_ORGANISATION=Test
      - LDAP_DOMAIN=test.com
      - LDAP_BASE_DN=dc=test,dc=com
      - LDAP_TLS=false
    ports:
      - "3898:389"
    volumes:
      - "/path/to/testdata/node1.ldif:/container/service/slapd/assets/config/bootstrap/ldif/custom/node1.ldif"

下面是go代码:

ldapPort, err := nat.NewPort("tcp", "389")
if err != nil {
    panic(err)
}

ctx := context.Background()
req := testcontainers.ContainerRequest{
    Image:        imageName,
    ExposedPorts: []string{ldapPort.Port() + "/" + ldapPort.Proto()},
    Env: map[string]string{
        "LDAP_ORGANISATION": "Test",
        "LDAP_DOMAIN": "test.com",
        "LDAP_BASE_DN": "dc=test,dc=com",
        "LDAP_TLS": "false",
    },

    BindMounts: map[string]string{
        "/path/to/testdata/node1.ldif":
            "/container/service/slapd/assets/config/bootstrap/ldif/custom/node.ldif",
    },
    WaitingFor:   wait.ForLog("slapd starting"),

}

ldapC, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
    ContainerRequest: req,
    Started:          true,
})
if err != nil {
    panic(err)
}
defer ldapC.Terminate(ctx)

docker-compose 文件工作正常,但是当我尝试使用 go 运行 容器时,容器崩溃,其日志包含以下内容:

sed: cannot rename /container/service/slapd/assets/config/bootstrap/ldif/custom/sedah0ove: Device or resource busy

我不确定 go 代码和 docker-compose 声明之间有什么区别。

答案实际上在问题中,在这种情况下:

Cmd:          []string{"--copy-service"}

需要添加到 testcontainers.ContainerRequest

来自 osixia/docker-openldap 文档:

Since startup script modifies ldif files, you must add --copy-service argument to entrypoint if you don't want to overwrite them.

我将其添加到我的 docker-compose 文件中,但在 Go 代码中忘记了它。