2020-07-23 23:58:08 +02:00
|
|
|
# Conduit
|
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
conduit:
|
|
|
|
image: conduit_homeserver
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- 14004:14004
|
|
|
|
volumes:
|
2020-08-01 15:18:49 +02:00
|
|
|
- db:/srv/conduit/.local/share/conduit
|
2020-07-23 23:58:08 +02:00
|
|
|
environment:
|
|
|
|
ROCKET_SERVER_NAME: example.com # replace with your own name
|
|
|
|
### Uncomment and change values as needed
|
2020-08-01 18:20:30 +02:00
|
|
|
# ROCKET_LOG: normal
|
|
|
|
# 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
|
2020-07-23 23:58:08 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
db:
|