mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 03:41:16 +01:00
67784ecb56
* Remove old Docker stuff * Move hub stuff to upper level docker directory * Build monolith images * Update README.md * Update paths * Update README.md
18 lines
334 B
YAML
18 lines
334 B
YAML
version: "3.4"
|
|
services:
|
|
monolith:
|
|
hostname: monolith
|
|
image: matrixdotorg/dendrite:monolith
|
|
command: [
|
|
"--config=dendrite.yaml",
|
|
"--tls-cert=server.crt",
|
|
"--tls-key=server.key"
|
|
]
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
networks:
|
|
internal:
|
|
attachable: true
|