aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2020-05-20 22:51:50 +1200
committerDavid Phillips <david@yeah.nah.nz>2020-05-20 22:52:05 +1200
commiteacc5eebb0b646bf6d9d306a778eccdadc0780b7 (patch)
tree15591100d32cea26a2b2e3f836bdf88bfeb92d88
parentf5bd4f56aaf487e6f113111bbe3d6546cac9d626 (diff)
downloadidalius-eacc5eebb0b646bf6d9d306a778eccdadc0780b7.tar.xz
Add docker-compose for ngircd + bot
Really useful for development
-rw-r--r--docker/docker-compose.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
new file mode 100644
index 0000000..00c91da
--- /dev/null
+++ b/docker/docker-compose.yml
@@ -0,0 +1,14 @@
+version: '2.0'
+services:
+ ircd:
+ image: geekduck/ngircd:latest
+ ports:
+ - "6667:6667"
+ bot:
+ image: idalius:v0.1
+ # Uncomment for manually docker-execing the bot for e.g. fast restarts
+ #entrypoint:
+ #- cat
+ #tty: true
+ volumes:
+ - ..:/idalius