Conduit is a simple, fast and reliable chat server powered by Matrix https://conduit.rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
989 B
27 lines
989 B
# Conduit |
|
version: '3' |
|
|
|
services: |
|
homeserver: |
|
image: conduit_homeserver |
|
restart: unless-stopped |
|
ports: |
|
- 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: 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' |
|
# ROCKET_DATABASE_PATH: /srv/conduit/.local/share/conduit |
|
# ROCKET_WORKERS: 10 |
|
# ROCKET_MAX_REQUEST_SIZE: 20_000_000 # in bytes, ~20 MB |
|
|
|
volumes: |
|
db:
|
|
|