You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
673 B
24 lines
673 B
# UnrealIRCd Server
|
|
|
|
> NOTE: This assumes version 5.X
|
|
|
|
To configure, mount:
|
|
- An `unrealircd.conf` to `/bootstrap/unrealircd.conf`
|
|
- An SSL key `server.cert.pem` to `/boostrap/server.cert.pem`
|
|
- An SSL cert `server.key.pem` to `/boostrap/server.key.pem`
|
|
- An optional `ircd.motd` to `/bootstrap/ircd.motd`
|
|
|
|
Example:
|
|
|
|
```
|
|
docker run -it --rm \
|
|
-v $PWD/unrealircd.conf:/bootstrap/conf/unrealircd.conf \
|
|
-v $PWD/server.key.pem:/bootstrap/tls/server.key.pem \
|
|
-v $PWD/server.cert.pem:/bootstrap/tls/server.cert.pem \
|
|
-p 6667:6667 -p 6697:6697 -p 6900:6900 \
|
|
jerryaldrichiii/unrealircd
|
|
```
|
|
|
|
## TODO
|
|
- Persistent reputation.db?
|
|
- Persistent unrealircd/data
|
|
|