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

networks:
  internal:
    attachable: true