You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 470 B

123456789101112
  1. FROM stackbrew/ubuntu:saucy
  2. MAINTAINER Meaglith Ma <genedna@gmail.com> (@genedna), Lance Ju <juzhenatpku@gmail.com> (@crystaldust)
  3. ENV DEBIAN_FRONTEND noninteractive
  4. RUN apt-get update && apt-get install -y redis-server
  5. # Usually redis doesn't need a password
  6. #RUN sed -i "s/# requirepass foobared/requirepass THE_REDIS_PASSWORD/g" /etc/redis/redis.conf
  7. EXPOSE 6379
  8. ENTRYPOINT ["/usr/bin/redis-server"]
  9. CMD ["--bind", "0.0.0.0"]