diff options
author | terminaldweller <thabogre@gmail.com> | 2022-05-21 15:10:01 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-05-21 15:10:01 +0000 |
commit | f77c7ae8a3f097108416cfe9b3c8841c7ae90084 (patch) | |
tree | aed7519ccf54a88120ea061f70f459db4f0338b9 /irc-slack/docker-compose.yaml | |
parent | update and fix to build docs (diff) | |
download | dockerimages-f77c7ae8a3f097108416cfe9b3c8841c7ae90084.tar.gz dockerimages-f77c7ae8a3f097108416cfe9b3c8841c7ae90084.zip |
irc-slack
Diffstat (limited to 'irc-slack/docker-compose.yaml')
-rw-r--r-- | irc-slack/docker-compose.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/irc-slack/docker-compose.yaml b/irc-slack/docker-compose.yaml new file mode 100644 index 0000000..20e794f --- /dev/null +++ b/irc-slack/docker-compose.yaml @@ -0,0 +1,21 @@ +version: "3" +services: + ircslack: + image: ircslack + build: + context: . + networks: + - ircslacknet + restart: unless-stopped + ports: + - "6667:6667" + depends_on: + - redis + - telebot + entrypoint: ["/irc-slack/irc-slack"] + command: ["--port", "6667", "--host", "0.0.0.0", "--cert", "/certs/server.cert", "--key", "/certs/server.key"] + cap_drop: + - ALL +networks: + ircslacknet: + driver: bridge |