diff options
Diffstat (limited to 'docker/docker-compose.yml')
-rw-r--r-- | docker/docker-compose.yml | 14 |
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 |