Giter VIP home page Giter VIP logo

docker-memcached's Introduction

Memcached Dockerfile

A Dockerfile that produces a Docker Image for Memcached.

Memcached version

The master branch currently hosts Memcached 1.4.

Different versions of Memcached are located at the github repo branches.

Usage

Build the image

To create the image frodenas/memcached, execute the following command on the docker-memcached folder:

$ docker build -t frodenas/memcached .

Run the image

To run the image and bind to host port 11211:

$ docker run -d --name memcached -p 11211:11211 frodenas/memcached

The first time you run your container, a new user memcached with all privileges will be created with a random password. To get the password, check the logs of the container by running:

docker logs <CONTAINER_ID>

You will see an output like the following:

========================================================================
Memcached User: "memcached"
Memcached Password: "VyUXlHIlOG2gSEjX"
========================================================================

Credentials

If you want to preset credentials instead of a random generated ones, you can set the following environment variables:

  • MEMCACHED_USERNAME to set a specific username
  • MEMCACHED_PASSWORD to set a specific password

On this example we will preset our custom username and password:

$ docker run -d \
    --name memcached \
    -p 11211:11211 \
    -e MEMCACHED_USERNAME=myusername \
    -e MEMCACHED_PASSWORD=mypassword \
    frodenas/memcached

Extra arguments

When you run the container, it will start the Memcached without any arguments. If you want to pass any arguments, just add them to the run command:

$ docker run -d ---name memcached -p 11211:11211 frodenas/memcached -m 128

Copyright

Copyright (c) 2014 Ferran Rodenas. See LICENSE for details.

docker-memcached's People

Contributors

frodenas avatar rkoster avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

docker-memcached's Issues

/etc/sasldb2: Permission denied

I am facing a permission problem when running this image. I see lots of the following message from docker logs <CONTAINER_ID>

SASL (severity 1): unable to open Berkeley db /etc/sasldb2: Permission denied

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.