summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorDaniel Wiesenberg <weasy@hotmail.de>2020-08-02 12:58:52 +0200
committerDaniel Wiesenberg <weasy@hotmail.de>2020-08-11 15:38:24 +0200
commit5f3cb3f9261537b884a91949421f10c8a451eb9a (patch)
tree3eaef9e09ef23c0478a3d0cf95916956f3fa8058 /docker-compose.yml
parent0338053774197c0c4df0729af6a034b30ac7f907 (diff)
downloadconduit-5f3cb3f9261537b884a91949421f10c8a451eb9a.zip
Minor modifications to compose file and update Dockerfile comments
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 36a928f..7c27360 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,17 +2,20 @@
version: '3'
services:
- conduit:
+ homeserver:
image: conduit_homeserver
restart: unless-stopped
ports:
- - 14004:14004
+ - 14004:8000
volumes:
- db:/srv/conduit/.local/share/conduit
+ ### Uncomment if you want to use Rocket.toml to configure Conduit
+ ### Note: Set env vars will override Rocket.toml values
+ # - ./Rocket.toml:/srv/conduit/Rocket.toml
environment:
- ROCKET_SERVER_NAME: example.com # replace with your own name
- ### Uncomment and change values as needed
- # ROCKET_LOG: normal
+ ROCKET_SERVER_NAME: localhost:8000 # replace with your own name
+ ### Uncomment and change values as desired
+ # ROCKET_LOG: normal # Available levels are: off, debug, normal, critical
# ROCKET_PORT: 14004
# ROCKET_REGISTRATION_DISABLED: 'true'
# ROCKET_ENCRYPTION_DISABLED: 'true'