Created
February 27, 2022 05:49
-
-
Save dato/b94ce4a32b743a32504b693e8f76db43 to your computer and use it in GitHub Desktop.
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
version: "3.5" | |
services: | |
bot: | |
image: greboid/irc | |
ports: | |
- "6080:8000" | |
- "127.0.0.1:7081:8001" | |
environment: | |
DEBUG: 0 | |
SERVER: "irc.libera.chat:6697" | |
NICK: ... | |
REALNAME: "I’m greboid/irc-{bot,github}" | |
CHANNEL: "#xxx-changes" | |
PLUGINS: github=xxxrandom1 | |
github: | |
image: greboid/irc-github | |
depends_on: | |
- bot | |
environment: | |
DEBUG: 1 | |
HIDE_PRIVATE: 0 | |
RPC_HOST: bot | |
RPC_TOKEN: xxxrandom1 | |
CHANNEL: "#xxx-changes" | |
GITHUB_SECRET: <change in github.com> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment