Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hkparker/i2p-docker
Java I2P router in Docker
https://github.com/hkparker/i2p-docker
Last synced: 2 months ago
JSON representation
Java I2P router in Docker
- Host: GitHub
- URL: https://github.com/hkparker/i2p-docker
- Owner: hkparker
- License: mit
- Created: 2016-12-29T17:51:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-01-30T23:52:05.000Z (almost 4 years ago)
- Last Synced: 2024-08-04T04:04:45.042Z (6 months ago)
- Language: Dockerfile
- Size: 13.7 KB
- Stars: 15
- Watchers: 3
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-i2p - i2p-docker - Java I2P router in Docker. (Docker images / I2Pd)
README
# I2P in Docker
This is the Java I2P router in Docker.
## Usage
`docker run -v ~/.i2p:/var/lib/i2p -p 127.0.0.1:4444:4444 -p 127.0.0.1:6668:6668 -p 127.0.0.1:7657:7657 geti2p/i2p`
### Common problems
If you use Fedora or other selinux enabled OS and get ```mkdir: cannot create directory ‘/var/lib/i2p/.i2p’: Permission denied```, try adding a `:Z` to your volume argument:
```
-v ~/.i2p:/var/lib/i2p:Z
```
As described in the [docker documentation](https://docs.docker.com/storage/bind-mounts/#configure-the-selinux-label), this should set the selinux labels correctly.