This repository has been archived by the owner on Jul 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0aca6b
commit f935f91
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ Contents: | |
atomiccommandcheatsheet | ||
base | ||
docker | ||
ircbouncer | ||
contribute | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
IRC Bouncer: ZNC | ||
================ | ||
|
||
This page describes how to use IRC Bouncer on Atomic host. We will run ZNC. | ||
|
||
**First you will need to boot up an atomic host** | ||
|
||
Copy the **Sources** down from here `Fedora Dockerfile for IRC Bouncer ZNC <https://github.com/fedora-cloud/Fedora-Dockerfiles/tree/master/znc/>_` on Atomic host. | ||
|
||
Now perform the build with the following command: | ||
|
||
``docker build -t fedora/znc`` | ||
|
||
After the build is successful run the container with the following command: | ||
|
||
``atomic run fedora/znc`` | ||
|
||
**Note** that is you are not using Atomic host, you can run the container with this command: | ||
``docker run -d --name znc -p 6667:6667 fedora/znc`` | ||
|
||
Now do ``docker ps -a`` to check if znc is running. | ||
|
||
**Note:** | ||
|
||
If you want to set your own nick and Server edit the file `znc.conf.default <https://github.com/fedora-cloud/Fedora-Dockerfiles/blob/master/znc/root/usr/share/container-scripts/znc/znc.conf.default/>`_ and perform Docker build. | ||
|