-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 786c73b
Showing
4 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM ubuntu:xenial | ||
LABEL maintainer="[email protected]" | ||
ENV VERSION=0.38.0-2 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update && apt-get install -y wget apt-transport-https | ||
COPY mcrouter.list /etc/apt/sources.list.d/ | ||
RUN wget -O - https://facebook.github.io/mcrouter/debian/PUBLIC.KEY | apt-key add && \ | ||
apt-get update -y && \ | ||
apt-get install -y mcrouter=$VERSION && \ | ||
apt-get clean | ||
|
||
ENTRYPOINT ["mcrouter"] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!groovy | ||
|
||
pipeline { | ||
agent { label 'ubuntu16' } | ||
|
||
stages { | ||
stage('Build') { | ||
steps { | ||
dockerBuildTagPush() | ||
} | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
docker-mcrouter | ||
--- | ||
|
||
This is an ubuntu 16.04 based Docker image for [Mcrouter](https://github.com/facebook/mcrouter), a popular memcache router. It speaks the memcached ASCII protocol and allows you to create memcached clusters (replicated or sharded) along with various features ranging from failover to flexible key routing. Please refer to [mcrouter Wiki](https://github.com/facebook/mcrouter/wiki) for more information |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
deb https://facebook.github.io/mcrouter/debian xenial contrib |