0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-11 17:08:59 +02:00
dendrite/build/docker/docker-compose.monolith.yml
stoically 41fd15b9b6
Docker fix and tweak (#1781)
* Fix image building with recent docker version

* Mount media path in docker to prevent data loss
2021-03-03 11:20:40 +00:00

22 lines
392 B
YAML

version: "3.4"
services:
monolith:
hostname: monolith
image: matrixdotorg/dendrite-monolith:latest
command: [
"--tls-cert=server.crt",
"--tls-key=server.key"
]
ports:
- 8008:8008
- 8448:8448
volumes:
- ./config:/etc/dendrite
- ./media:/var/dendrite/media
networks:
- internal
networks:
internal:
attachable: true