Skip to content

Instantly share code, notes, and snippets.

@AGhost-7
Created February 29, 2016 21:18
Show Gist options
  • Select an option

  • Save AGhost-7/3083c9cfd6ea8269dfda to your computer and use it in GitHub Desktop.

Select an option

Save AGhost-7/3083c9cfd6ea8269dfda to your computer and use it in GitHub Desktop.
Simple redis container
FROM ubuntu:14.04
RUN \
apt-get update && \
apt-get install redis-server=2:2.8.4-2 && \
apt-get clean
CMD ["redis-server"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment