mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
ec716793eb
* Initial federation sender -> federation API refactoring * Move base into own package, avoids import cycle * Fix build errors * Fix tests * Add signing key server tables * Try to fold signing key server into federation API * Fix dendritejs builds * Update embedded interfaces * Fix panic, fix lint error * Update configs, docker * Rename some things * Reuse same keyring on the implementing side * Fix federation tests, `NewBaseDendrite` can accept freeform options * Fix build * Update create_db, configs * Name tables back * Don't rename federationsender consumer for now
91 lines
1.8 KiB
YAML
91 lines
1.8 KiB
YAML
version: "3.4"
|
|
services:
|
|
client_api:
|
|
hostname: client_api
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: clientapi
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
media_api:
|
|
hostname: media_api
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: mediaapi
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
- ./media:/var/dendrite/media
|
|
networks:
|
|
- internal
|
|
|
|
sync_api:
|
|
hostname: sync_api
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: syncapi
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
room_server:
|
|
hostname: room_server
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: roomserver
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
edu_server:
|
|
hostname: edu_server
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: eduserver
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
federation_api:
|
|
hostname: federation_api
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: federationapi
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
key_server:
|
|
hostname: key_server
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: keyserver
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
user_api:
|
|
hostname: user_api
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: userapi
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
appservice_api:
|
|
hostname: appservice_api
|
|
image: matrixdotorg/dendrite-polylith:latest
|
|
command: appservice
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- room_server
|
|
- user_api
|
|
|
|
networks:
|
|
internal:
|
|
attachable: true
|