summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
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'