mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-23 06:41:56 -06:00
92982a402f
* Separate Docker images, rather than tags * Allow specifying tag to build/push/pull * Include goose in Docker builds
19 lines
341 B
YAML
19 lines
341 B
YAML
version: "3.4"
|
|
services:
|
|
monolith:
|
|
hostname: monolith
|
|
image: matrixdotorg/dendrite-monolith:latest
|
|
command: [
|
|
"--config=dendrite.yaml",
|
|
"--tls-cert=server.crt",
|
|
"--tls-key=server.key"
|
|
]
|
|
volumes:
|
|
- ./config:/etc/dendrite
|
|
networks:
|
|
- internal
|
|
|
|
networks:
|
|
internal:
|
|
attachable: true
|