1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# DO NOT EDIT
# Generated from .copier-answers.yml
services:
slidge:
build:
context: .
target: dev
network_mode: service:prosody
volumes:
- ./matridge:/build/matridge
- ./persistent:/var/lib/slidge/slidge.localhost
depends_on:
prosody:
condition: service_started
prosody:
image: codeberg.org/slidge/prosody-slidge-dev:latest
ports:
- "127.0.0.1:5281:5281" # XMPP port for clients to connect to
- "127.0.0.1:5222:5222" # prosody's http_file_share
- "127.0.0.1:4444:4444" # for nginx (optional, no-upload)
- "127.0.0.1:8888:80" # for movim (optional)
|