1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-30 20:58:53 +02:00
conduit/docker-compose.yml
Daniel Wiesenberg 0338053774 Add ability to switch between local and remote build with build arg a...
...nd add env vars to docker-compose
2020-08-11 15:38:24 +02:00

24 lines
728 B
YAML

# Conduit
version: '3'
services:
conduit:
image: conduit_homeserver
restart: unless-stopped
ports:
- 14004:14004
volumes:
- db:/srv/conduit/.local/share/conduit
environment:
ROCKET_SERVER_NAME: example.com # replace with your own name
### Uncomment and change values as needed
# 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
volumes:
db: