20 lines
482 B
YAML
20 lines
482 B
YAML
|
version: '3.7'
|
||
|
|
||
|
services:
|
||
|
|
||
|
ejabberd_server:
|
||
|
image: ghcr.io/processone/ejabberd
|
||
|
container_name: ejabberd
|
||
|
environment:
|
||
|
- CTL_ON_CREATE=register admin localhost admin ;
|
||
|
register user localhost password
|
||
|
- CTL_ON_START=registered_users localhost ;
|
||
|
status
|
||
|
ports:
|
||
|
- "5222:5222"
|
||
|
- "5269:5269"
|
||
|
- "5280:5280"
|
||
|
- "5443:5443"
|
||
|
volumes:
|
||
|
- ./ejabberd.yml:/opt/ejabberd/conf/ejabberd.yml:ro
|