mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
32 lines
1.2 KiB
YAML
32 lines
1.2 KiB
YAML
# Continuwuity - Bare Configuration (for other reverse proxies)
|
|
|
|
services:
|
|
homeserver:
|
|
image: forgejo.ellis.link/continuwuation/continuwuity:latest
|
|
restart: unless-stopped
|
|
command: /sbin/conduwuit
|
|
ports:
|
|
- 127.0.0.1:8008:8008
|
|
volumes:
|
|
- db:/var/lib/continuwuity
|
|
- ./continuwuity-resolv.conf:/etc/resolv.conf # use custom resolvers rather than Docker's
|
|
#- ./continuwuity.toml:/etc/continuwuity.toml
|
|
environment:
|
|
CONTINUWUITY_SERVER_NAME: example.com # EDIT THIS
|
|
CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity
|
|
CONTINUWUITY_ADDRESS: 0.0.0.0
|
|
CONTINUWUITY_PORT: 8008
|
|
#CONTINUWUITY_CONFIG: '/etc/continuwuity.toml' # Uncomment if you mapped config toml above
|
|
|
|
## (Optional) Serve .well-known files to tell others to reach Continuwuity on port :443
|
|
## If you do this, remove all routes to port :8448 on your reverse proxy
|
|
# CONTINUWUITY_WELL_KNOWN: |
|
|
# {
|
|
# client=https://example.com,
|
|
# server=example.com:443
|
|
# }
|
|
|
|
|
|
volumes:
|
|
db:
|