You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ZNC is an IRC network bouncer (BNC). It can detach the client from the
4
-
actual IRC server, and also from selected channels. Multiple clients
5
-
from different locations can connect to a single ZNC account
6
-
simultaneously and therefore appear under the same nickname on IRC.
3
+
ZNC is an IRC network bouncer (BNC). It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.
7
4
8
5
[ZNC Wiki](http://znc.in/)
9
6
10
7
# How to use this image
11
8
12
-
ZNC in this image stores its configuration in `/znc-data`.
13
-
If you have existing configuration, you can reuse it with `-v $HOME/.znc:/znc-data`.
14
-
Alternatively, you can create a new config in a volume or in a local dir.
15
-
The examples below assumes a volume named `znc-cfg`.
9
+
ZNC in this image stores its configuration in `/znc-data`. If you have existing configuration, you can reuse it with `-v $HOME/.znc:/znc-data`. Alternatively, you can create a new config in a volume or in a local dir. The examples below assumes a volume named `znc-cfg`.
16
10
17
11
```console
18
12
$ docker run -it -v znc-cfg:/znc-data znc --makeconf
@@ -24,11 +18,8 @@ To run ZNC:
24
18
$ docker run -p 6697:6697 -v znc-cfg:/znc-data znc
25
19
```
26
20
27
-
The port should match the port you used during `--makeconf`. Note that 6667 is
28
-
often blocked by web browsers, and therefore is not recommended.
21
+
The port should match the port you used during `--makeconf`. Note that 6667 is often blocked by web browsers, and therefore is not recommended.
29
22
30
-
If you use any external module, put the .cpp, .py or .pm file to
31
-
`/znc-data/modules` (you may need to create that directory).
23
+
If you use any external module, put the .cpp, .py or .pm file to `/znc-data/modules` (you may need to create that directory).
32
24
33
-
Musl silently doesn't support `AI_ADDRCONFIG` yet, and ZNC doesn't support [Happy Eyeballs](https://en.wikipedia.org/wiki/Happy_Eyeballs) yet.
34
-
Together they cause very slow connection. So for now IPv6 is disabled here.
25
+
Musl silently doesn't support `AI_ADDRCONFIG` yet, and ZNC doesn't support [Happy Eyeballs](https://en.wikipedia.org/wiki/Happy_Eyeballs) yet. Together they cause very slow connection. So for now IPv6 is disabled here.
0 commit comments