Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ticklemynausea/hybridircd-docker

Docker setup for Hybrid ircd
https://github.com/ticklemynausea/hybridircd-docker

Last synced: 17 days ago
JSON representation

Docker setup for Hybrid ircd

Awesome Lists containing this project

README

        

# hybridircd-docker

Builds and runs hybrid ircd inside a docker container

## Building

```
docker build . -t ircd
```

### Transfering to a remote server

```
docker build . -t ircd && docker save ircd | ssh -C [email protected] docker load
```

## Running

```
docker run -d \
--name ircd \
--restart=unless-stopped \
-v ircd-data:/hybrid-data \
--network bridge-irc \
--ip 192.168.41.2 \
--ip6 fd00:1:192:168:100::2 \
ircd: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
```