Adding Dockerfile with support files to build a minimal docker image running i2p.

This commit is contained in:
meeh
2017-01-07 13:59:26 +00:00
parent fc0ddb0193
commit 7f9a211242
4 changed files with 91 additions and 0 deletions

7
Docker.expt Normal file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/expect
set timeout 15;
spawn java -jar /tmp/i2pinstall.jar -console
expect {
-re ".*press 1 to continue, 2 to quit, 3 to redisplay" {send "1\r"; exp_continue;}
-re "Select target path *" {send "/opt/i2p\r"; exp_continue;}
}