aboutsummaryrefslogtreecommitdiff
path: root/build/docker/docker-compose.monolith.yml
blob: 336a439848a023cd5d846d6f6031163632d11c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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