1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 01:08:37 +00:00
This commit is contained in:
kev 2024-05-15 19:07:43 +08:00
parent fa37a10f2f
commit 9967914d4a
3 changed files with 17 additions and 0 deletions

@ -357,6 +357,7 @@ A collection of delicious docker recipes.
- [x] elasticdump/elasticsearch-dump :mag:
- [x] elk
- [x] andris9/emailengine :moneybag:
- [x] ghcr.io/ergochat/ergo :octocat:
- [x] esphome/esphome
- [x] quay.io/coreos/etcd
- [x] audreyt/ethercalc

6
ergo/README.md Normal file

@ -0,0 +1,6 @@
ergo
====
[Ergo][1] (formerly known as Oragono) is a modern IRC server written in Go.
[1]: https://github.com/ergochat/ergo

10
ergo/docker-compose.yml Normal file

@ -0,0 +1,10 @@
version: "3.8"
services:
ergo:
image: ghcr.io/ergochat/ergo:stable
ports:
- "6667:6667"
- "6697:6697"
volumes:
- ./data:/ircd
restart: unless-stopped