mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 00:19:29 +01:00
add --init to suggested docker run invocations (#2097)
* add --init to suggested docker run invocations See #2096; this should fix unreaped zombies when using an auth-script or ip-check-script that spawns its own subprocesses, then exits before reaping them. * add a note on why --init
This commit is contained in:
parent
4fabeed895
commit
a5af245102
@ -18,7 +18,7 @@ certificates. To get a working ircd, all you need to do is run the image and
|
|||||||
expose the ports:
|
expose the ports:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker run --name ergo -d -p 6667:6667 -p 6697:6697 ghcr.io/ergochat/ergo:stable
|
docker run --init --name ergo -d -p 6667:6667 -p 6697:6697 ghcr.io/ergochat/ergo:stable
|
||||||
```
|
```
|
||||||
|
|
||||||
This will start Ergo and listen on ports 6667 (plain text) and 6697 (TLS).
|
This will start Ergo and listen on ports 6667 (plain text) and 6697 (TLS).
|
||||||
@ -38,6 +38,11 @@ You should see a line similar to:
|
|||||||
Oper username:password is admin:cnn2tm9TP3GeI4vLaEMS
|
Oper username:password is admin:cnn2tm9TP3GeI4vLaEMS
|
||||||
```
|
```
|
||||||
|
|
||||||
|
We recommend the use of `--init` (`init: true` in docker-compose) to solve an
|
||||||
|
edge case involving unreaped zombie processes when Ergo's script API is used
|
||||||
|
for authentication or IP validation. For more details, see
|
||||||
|
[krallin/tini#8](https://github.com/krallin/tini/issues/8).
|
||||||
|
|
||||||
## Persisting data
|
## Persisting data
|
||||||
|
|
||||||
Ergo has a persistent data store, used to keep account details, channel
|
Ergo has a persistent data store, used to keep account details, channel
|
||||||
@ -48,14 +53,14 @@ For example, to create a new docker volume and then mount it:
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker volume create ergo-data
|
docker volume create ergo-data
|
||||||
docker run -d -v ergo-data:/ircd -p 6667:6667 -p 6697:6697 ghcr.io/ergochat/ergo:stable
|
docker run --init -d -v ergo-data:/ircd -p 6667:6667 -p 6697:6697 ghcr.io/ergochat/ergo:stable
|
||||||
```
|
```
|
||||||
|
|
||||||
Or to mount a folder from your host machine:
|
Or to mount a folder from your host machine:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
mkdir ergo-data
|
mkdir ergo-data
|
||||||
docker run -d -v $(PWD)/ergo-data:/ircd -p 6667:6667 -p 6697:6697 ghcr.io/ergochat/ergo:stable
|
docker run --init -d -v $(PWD)/ergo-data:/ircd -p 6667:6667 -p 6697:6697 ghcr.io/ergochat/ergo:stable
|
||||||
```
|
```
|
||||||
|
|
||||||
## Customising the config
|
## Customising the config
|
||||||
|
Loading…
Reference in New Issue
Block a user