Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ticklemynausea/hopm-docker
Docker setup for Hybrid open proxy monitor
https://github.com/ticklemynausea/hopm-docker
Last synced: 17 days ago
JSON representation
Docker setup for Hybrid open proxy monitor
- Host: GitHub
- URL: https://github.com/ticklemynausea/hopm-docker
- Owner: ticklemynausea
- Created: 2018-06-16T03:49:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T03:50:06.000Z (over 6 years ago)
- Last Synced: 2024-10-27T12:25:36.309Z (2 months ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hopm-docker
Builds and runs hybrid open proxy monitor inside a docker container
## Building
```
docker build . -t hopm
```### Transfering to a remote server
```
docker build . -t hopm && docker save hopm | ssh -C [email protected] docker load
```## Running
```
docker run -d \
--name hopm \
--restart=unless-stopped \
-v ircd-data:/hybrid-data \
--network bridge-irc \
--ip 192.168.41.2 \
--ip6 fd00:1:192:168:100::2 \
hopm:latest
```### Creating a volume
```
docker volume create ircd-data
```### Creating a network bridge
```
docker network create \
--ipv6
--subnet=fd00:1:192:168:100::0/80 \
--gateway=fd00:1:192:168:100::1 \
--subnet=192.168.41.0/24 \
--gateway=192.168.41.1 \
bridge-irc
```