diff --git a/folsom/src/test/java/com/spotify/folsom/MemcachedServer.java b/folsom/src/test/java/com/spotify/folsom/MemcachedServer.java
index 33ce4a7c..0dc08d43 100644
--- a/folsom/src/test/java/com/spotify/folsom/MemcachedServer.java
+++ b/folsom/src/test/java/com/spotify/folsom/MemcachedServer.java
@@ -41,7 +41,7 @@ public enum AuthenticationMode {
 
   public static int DEFAULT_PORT = 11211;
 
-  private static final String MEMCACHED_VERSION = "1.6.21";
+  private static final String MEMCACHED_VERSION = "1.6.22";
   private final String username;
   private final String password;
   private final boolean useTLS;
@@ -117,7 +117,7 @@ private FixedHostPortGenericContainer setupContainer(
 
   private FixedHostPortGenericContainer setupTLSContainer() {
     final FixedHostPortGenericContainer container =
-        new FixedHostPortGenericContainer("memcached:" + MEMCACHED_VERSION);
+        new FixedHostPortGenericContainer("bitnami/memcached:" + MEMCACHED_VERSION);
 
     container.withClasspathResourceMapping(
         "/pki/test.pem", "/test-certs/test.pem", BindMode.READ_ONLY);