Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```