forked from sociomantic-tsunami/dhtnode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Beaver based generation of dhtnode docker image
- Loading branch information
1 parent
70972b3
commit 1bb9e2e
Showing
8 changed files
with
40 additions
and
10 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,12 @@ | ||
# requires dhtnode docker image already present in the cache | ||
# start with `docker-compose -f docker-compose-example.yml up | ||
version: '2' | ||
services: | ||
dhtnode: | ||
image: sociomantictsunami/dhtnode | ||
ports: | ||
- "10000:10000" | ||
volumes: | ||
- "dhtdata:/src/dhtnode/dhtnode-0/data" | ||
volumes: | ||
dhtdata: |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,7 @@ | ||
FROM sociomantictsunami/dlang:xenial-v4 | ||
COPY docker/runner/dhtnode-d*.deb /packages/ | ||
RUN apt update && apt install libebtree6 | ||
RUN mkdir -p /srv/dhtnode/dhtnode-0 && apt install -y /packages/*.deb | ||
COPY doc/etc/dht.config.ini /srv/dhtnode/dhtnode-0/etc/config.ini | ||
WORKDIR /srv/dhtnode/dhtnode-0 | ||
CMD [ "/usr/sbin/dhtnode-d2", "-c", "/srv/dhtnode/dhtnode-0/etc/config.ini" ] |
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,3 @@ | ||
* | ||
!docker/runner | ||
!doc |
Submodule beaver
updated
20 files
+1 −0 | .gitignore | |
+1 −0 | .travis.yml | |
+43 −0 | README.md | |
+31 −3 | bin/beaver-install | |
+29 −2 | bin/dlang/install | |
+2 −1 | bin/docker/build | |
+1 −1 | local-test | |
+0 −17 | relnotes/codecov.feature.md | |
+40 −0 | relnotes/contexts.feature.md | |
+0 −3 | relnotes/cov.migration.md | |
+10 −0 | relnotes/remove-temp.migration.md | |
+2 −0 | test/multi-install/img1/.dockerignore | |
+9 −0 | test/multi-install/img1/beaver.Dockerfile | |
+11 −0 | test/multi-install/img1/beaver.Dockerfile.generated.expected | |
+7 −0 | test/multi-install/img1/build | |
+2 −0 | test/multi-install/img1/dockerignore | |
+2 −0 | test/multi-install/img2/.dockerignore | |
+10 −0 | test/multi-install/img2/Dockerfile.xenial | |
+7 −0 | test/multi-install/img2/build | |
+55 −0 | test/multi-install/test |