All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tbk.spring.testcontainer.bitcoind.BitcoindContainer Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package org.tbk.spring.testcontainer.bitcoind;

import org.testcontainers.containers.GenericContainer;
import org.testcontainers.utility.DockerImageName;

public class BitcoindContainer> extends GenericContainer {

    public BitcoindContainer(DockerImageName dockerImageName) {
        super(dockerImageName);
    }
}