Skip to content

Instantly share code, notes, and snippets.

@yangm97
Created February 4, 2019 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yangm97/58ee460e64ab9d39a48d351554556f41 to your computer and use it in GitHub Desktop.
Save yangm97/58ee460e64ab9d39a48d351554556f41 to your computer and use it in GitHub Desktop.
version: "3.6"
services:
inspircd-1:
image: inspircd/inspircd-docker
environment:
INSP_LINK1_NAME: inspircd-2
INSP_LINK1_IPADDR: inspircd-2
INSP_LINK1_SENDPASS: password
INSP_LINK1_RECVPASS: password
INSP_LINK1_TLS_ON: "no"
volumes:
- ./inspircd-1:/inspircd/conf
ports:
- "6667:6667"
- "6697:6697"
- "7000:7000"
- "7001:7001"
inspircd-2:
image: inspircd/inspircd-docker
environment:
INSP_LINK1_NAME: inspircd-1
INSP_LINK1_IPADDR: inspircd-1
INSP_LINK1_SENDPASS: password
INSP_LINK1_RECVPASS: password
INSP_LINK1_TLS_ON: "no"
volumes:
- ./inspircd-2:/inspircd/conf
irc-matrix-bridge:
build: .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment