summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorDaniel Wiesenberg <weasy@hotmail.de>2021-07-06 10:40:57 +0200
committerDaniel Wiesenberg <weasy@hotmail.de>2021-07-06 10:43:33 +0200
commit6a96cfaac1fad23ae689ecc80ea2ed0a8af097e5 (patch)
tree495b3214f18f2c2b4b9473b508c0f6a1ed5debcc /docker-compose.yml
parent787e18b2a42826a00223328ad66341a78166a8d7 (diff)
downloadconduit-6a96cfaac1fad23ae689ecc80ea2ed0a8af097e5.zip
Change default port in docker to the new
conduit default port 6167 and fix the docker healthcheck
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index cfc2462..cf0d2c1 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -18,18 +18,18 @@ services:
GIT_REF: origin/master
restart: unless-stopped
ports:
- - 8448:8000
+ - 8448:6167
volumes:
- db:/srv/conduit/.local/share/conduit
### Uncomment if you want to use conduit.toml to configure Conduit
### Note: Set env vars will override conduit.toml values
# - ./conduit.toml:/srv/conduit/conduit.toml
environment:
- CONDUIT_SERVER_NAME: localhost:8000 # replace with your own name
+ CONDUIT_SERVER_NAME: localhost:6167 # replace with your own name
CONDUIT_TRUSTED_SERVERS: '["matrix.org"]'
### Uncomment and change values as desired
# CONDUIT_ADDRESS: 127.0.0.1
- # CONDUIT_PORT: 8000
+ # CONDUIT_PORT: 6167
# CONDUIT_CONFIG: '/srv/conduit/conduit.toml' # if you want to configure purely by env vars, set this to an empty string ''
# Available levels are: error, warn, info, debug, trace - more info at: https://docs.rs/env_logger/*/env_logger/#enabling-logging
# CONDUIT_LOG: info # default is: "info,rocket=off,_=off,sled=off"