-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squash merge latest code to github branch
- Loading branch information
1 parent
a79b519
commit a799669
Showing
29 changed files
with
461 additions
and
136 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
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
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
Submodule docker-base
updated
from 915f0f to dfb5c2
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
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,31 @@ | ||
# This file tells the quagga package which daemons to start. | ||
# | ||
# Entries are in the format: <daemon>=(yes|no|priority) | ||
# 0, "no" = disabled | ||
# 1, "yes" = highest priority | ||
# 2 .. 10 = lower priorities | ||
# Read /usr/share/doc/quagga/README.Debian for details. | ||
# | ||
# Sample configurations for these daemons can be found in | ||
# /usr/share/doc/quagga/examples/. | ||
# | ||
# ATTENTION: | ||
# | ||
# When activation a daemon at the first time, a config file, even if it is | ||
# empty, has to be present *and* be owned by the user and group "quagga", else | ||
# the daemon will not be started by /etc/init.d/quagga. The permissions should | ||
# be u=rw,g=r,o=. | ||
# When using "vtysh" such a config file is also needed. It should be owned by | ||
# group "quaggavty" and set to ug=rw,o= though. Check /etc/pam.d/quagga, too. | ||
# | ||
# The watchquagga daemon is always started. Per default in monitoring-only but | ||
# that can be changed via /etc/quagga/debian.conf. | ||
# | ||
zebra=yes | ||
bgpd=yes | ||
ospfd=no | ||
ospf6d=no | ||
ripd=no | ||
ripngd=no | ||
isisd=no | ||
babeld=no |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM docker-base | ||
|
||
## Pre-install the fundamental packages | ||
RUN apt-get update && apt-get -y install \ | ||
redis-server | ||
## Clean up | ||
RUN apt-get -y install \ | ||
redis-server \ | ||
&& \ | ||
apt-get clean -y && apt-get autoclean -y && apt-get autoremove -y | ||
|
||
RUN sed -ri 's/^daemonize yes$/daemonize no/' /etc/redis/redis.conf \ | ||
&& sed -ri 's/^logfile .*$/logfile ""/' /etc/redis/redis.conf \ | ||
&& sed -ri 's/^# syslog-enabled no$/syslog-enabled no/' /etc/redis/redis.conf | ||
|
||
## Clean up | ||
RUN apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y | ||
|
||
ENTRYPOINT service redis-server start |
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
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,5 @@ | ||
#!/bin/bash | ||
|
||
service rsyslog start | ||
service quagga start | ||
fpmsyncd & |
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
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
Oops, something went wrong.