Created
February 29, 2016 21:18
-
-
Save AGhost-7/3083c9cfd6ea8269dfda to your computer and use it in GitHub Desktop.
Simple redis container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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