mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-26 00:03:09 -06:00
22 lines
389 B
YAML
22 lines
389 B
YAML
version: "3.4"
|
|
services:
|
|
monolith:
|
|
hostname: monolith
|
|
image: matrixdotorg/dendrite-monolith:latest
|
|
command: [
|
|
"--tls-cert=/keys/server.crt",
|
|
"--tls-key=/keys/server.key"
|
|
]
|
|
ports:
|
|
- 8008:8008
|
|
- 8448:8448
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
- ./keys:/keys
|
|
networks:
|
|
- internal
|
|
|
|
networks:
|
|
internal:
|
|
attachable: true
|