diff options
author | Ashley Nelson <amn@fantashley.com> | 2020-06-20 15:28:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 21:28:30 +0100 |
commit | 61e0482fef7aa34c0261e41fd90aa5c5e4890bfc (patch) | |
tree | 83ef7ac4a8707bcaf018198367484c877d8069d2 /build/docker/docker-compose.polylith.yml | |
parent | 7f26b0cd13534ba235c2bf0a7220d3462ca8e9da (diff) |
Add appservices component to docker scripts (#1153)
Signed-off-by: Ashley Nelson <amn@fantashley.com>
Diffstat (limited to 'build/docker/docker-compose.polylith.yml')
-rw-r--r-- | build/docker/docker-compose.polylith.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build/docker/docker-compose.polylith.yml b/build/docker/docker-compose.polylith.yml index af2ae4e8..d424d43b 100644 --- a/build/docker/docker-compose.polylith.yml +++ b/build/docker/docker-compose.polylith.yml @@ -163,6 +163,20 @@ services: networks: - internal + appservice_api: + hostname: appservice_api + image: matrixdotorg/dendrite:appservice + command: [ + "--config=dendrite.yaml" + ] + volumes: + - ./config:/etc/dendrite + networks: + - internal + depends_on: + - room_server + - user_api + networks: internal: attachable: true |