summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorDaniel Wiesenberg <weasy@hotmail.de>2021-03-12 18:26:23 +0100
committerDaniel Wiesenberg <weasy@hotmail.de>2021-05-22 16:53:48 +0200
commit52a96b3d8404ccfc04ab0e0ba60ed8f9963ba686 (patch)
tree0183febcd5fd025c36ffd1ef9394d3d16fe6571c /docker-compose.yml
parent42c9ba2e5cdc02cac85da8e317e65ed6c32ba133 (diff)
downloadconduit-52a96b3d8404ccfc04ab0e0ba60ed8f9963ba686.zip
Update Dockerfile and docker-compose
- Dockerfile now tracks the gitlab repository and the master branch. - docker-compose now points to conduit.toml instead of Rocket.toml and its env vars were also renamed from ROCKET_ to CONDUIT_. Furthermore vectorim/riot-web was changed to vectorim/element-web
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml30
1 files changed, 16 insertions, 14 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 7d19762..38c8a11 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -15,33 +15,35 @@ services:
# CREATED:
# VERSION:
# LOCAL: 'false'
- # GIT_REF: HEAD
+ # GIT_REF: origin/master
restart: unless-stopped
ports:
- 8448: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
+ ### 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:
- ROCKET_SERVER_NAME: localhost:8000 # replace with your own name
+ CONDUIT_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: 8000
- # ROCKET_REGISTRATION_DISABLED: 'true'
- # ROCKET_ENCRYPTION_DISABLED: 'true'
- # ROCKET_FEDERATION_ENABLED: 'true'
- # ROCKET_DATABASE_PATH: /srv/conduit/.local/share/conduit
- # ROCKET_WORKERS: 10
- # ROCKET_MAX_REQUEST_SIZE: 20_000_000 # in bytes, ~20 MB
+ # CONDUIT_ADDRESS: 127.0.0.1
+ # CONDUIT_PORT: 8000
+ # CONDUIT_LOG: normal # Available levels are: off, debug, normal, critical
+ # CONDUIT_ALLOW_JAEGER: 'false'
+ # CONDUIT_ALLOW_REGISTRATION : 'false'
+ # CONDUIT_ALLOW_ENCRYPTION: 'false'
+ # CONDUIT_ALLOW_FEDERATION: 'false'
+ # CONDUIT_DATABASE_PATH: /srv/conduit/.local/share/conduit
+ # CONDUIT_WORKERS: 10
+ # CONDUIT_MAX_REQUEST_SIZE: 20_000_000 # in bytes, ~20 MB
### Uncomment if you want to use your own Element-Web App.
### Note: You need to provide a config.json for Element and you also need a second
### Domain or Subdomain for the communication between Element and Conduit
### Config-Docs: https://github.com/vector-im/element-web/blob/develop/docs/config.md
# element-web:
- # image: vectorim/riot-web:latest
+ # image: vectorim/element-web:latest
# restart: unless-stopped
# ports:
# - 8009:80