We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1970171 commit de828e8Copy full SHA for de828e8
3 files changed
docker-compose.i2p.yml
@@ -0,0 +1,14 @@
1
+services:
2
+ i2pd:
3
+ image: purplei2p/i2pd:release-2.59.0
4
+ container_name: i2pd
5
+ depends_on:
6
+ - nostream
7
+ volumes:
8
+ - ${PWD}/.nostr/i2p/data:/home/i2pd/data
9
+ - ${PWD}/i2p/i2pd.conf:/home/i2pd/data/i2pd.conf:ro
10
+ - ${PWD}/i2p/tunnels.conf:/home/i2pd/data/tunnels.conf:ro
11
+ restart: on-failure
12
+ networks:
13
+ default:
14
+ ipv4_address: 10.10.10.252
i2p/i2pd.conf
@@ -0,0 +1,8 @@
+# Minimal i2pd configuration for nostream.
+# Data and keys are persisted via the Docker volume mount at /home/i2pd/data.
+
+[limits]
+transittunnels = 256
+[precomputation]
+elgamal = true
i2p/tunnels.conf
@@ -0,0 +1,5 @@
+[nostream]
+type = http
+host = 10.10.10.2
+port = 8008
+keys = nostream.dat
0 commit comments