mirror of
https://github.com/docker/docs.git
synced 2026-03-30 15:58:53 +07:00
8 lines
210 B
Docker
8 lines
210 B
Docker
FROM ubuntu:14.04
|
|
MAINTAINER James Turnbull "james@example.com"
|
|
ENV REFRESHED_AT 2014-06-01
|
|
RUN apt-get update
|
|
RUN apt-get -y install redis-server redis-tools
|
|
EXPOSE 6379
|
|
ENTRYPOINT [ "/usr/bin/redis-server" ]
|