-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add docker file; restart recover (#156)
- Loading branch information
1 parent
d643d52
commit 2dcac05
Showing
18 changed files
with
809 additions
and
215 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM debian:bullseye-20221205 | ||
|
||
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && \ | ||
apt install -y libfuse3-3 libfuse2 libibverbs1 && \ | ||
apt clean && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
COPY target/debug/client /usr/local/bin/client | ||
|
||
ENTRYPOINT ["/usr/local/bin/client"] |
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,10 @@ | ||
FROM debian:bullseye-20221205 | ||
|
||
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && \ | ||
apt install -y libfuse3-3 libfuse2 libibverbs1 && \ | ||
apt clean && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
COPY target/debug/manager /usr/local/bin/manager | ||
|
||
ENTRYPOINT ["/usr/local/bin/manager"] |
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,10 @@ | ||
FROM debian:bullseye-20221205 | ||
|
||
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && \ | ||
apt install -y libfuse3-3 libfuse2 libibverbs1 && \ | ||
apt clean && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
COPY target/debug/server /usr/local/bin/server | ||
|
||
ENTRYPOINT ["/usr/local/bin/server"] |
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 |
---|---|---|
|
@@ -8,9 +8,5 @@ all_servers_address: | |
- 127.0.0.1:8089 | ||
virtual_nodes: | ||
100 | ||
heartbeat: | ||
false | ||
log_level: | ||
warn | ||
protect_threshold: | ||
0.5 |
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
Oops, something went wrong.