summaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: 36a928f03f74ea7d99b74c962b3eb0dcef3c3fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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: