
org.testcontainers.containers.NginxContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nginx Show documentation
Show all versions of nginx Show documentation
Isolated container management for Java code testing
package org.testcontainers.containers;
import org.jetbrains.annotations.NotNull;
import org.testcontainers.containers.traits.LinkableContainer;
import org.testcontainers.utility.DockerImageName;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Set;
public class NginxContainer>
extends GenericContainer
implements LinkableContainer {
private static final int NGINX_DEFAULT_PORT = 80;
private static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName.parse("nginx");
private static final String DEFAULT_TAG = "1.9.4";
/**
* @deprecated use {@link #NginxContainer(DockerImageName)} instead
*/
@Deprecated
public NginxContainer() {
this(DEFAULT_IMAGE_NAME.withTag(DEFAULT_TAG));
}
public NginxContainer(String dockerImageName) {
this(DockerImageName.parse(dockerImageName));
}
public NginxContainer(final DockerImageName dockerImageName) {
super(dockerImageName);
dockerImageName.assertCompatibleWith(DEFAULT_IMAGE_NAME);
addExposedPort(NGINX_DEFAULT_PORT);
setCommand("nginx", "-g", "daemon off;");
}
/**
* @return the ports on which to check if the container is ready
* @deprecated use {@link #getLivenessCheckPortNumbers()} instead
*/
@NotNull
@Override
@Deprecated
protected Set getLivenessCheckPorts() {
return super.getLivenessCheckPorts();
}
public URL getBaseUrl(String scheme, int port) throws MalformedURLException {
return new URL(scheme + "://" + getHost() + ":" + getMappedPort(port));
}
@Deprecated
public void setCustomContent(String htmlContentPath) {
addFileSystemBind(htmlContentPath, "/usr/share/nginx/html", BindMode.READ_ONLY);
}
@Deprecated
public SELF withCustomContent(String htmlContentPath) {
this.setCustomContent(htmlContentPath);
return self();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy