2026-04-15 14:19:24 +00:00
|
|
|
# Continuwuity - Bare Configuration (for other reverse proxies)
|
2020-07-23 23:58:08 +02:00
|
|
|
|
|
|
|
|
services:
|
2020-08-02 12:58:52 +02:00
|
|
|
homeserver:
|
2026-04-16 10:48:26 +00:00
|
|
|
image: "forgejo.ellis.link/continuwuation/continuwuity:latest"
|
2020-07-23 23:58:08 +02:00
|
|
|
restart: unless-stopped
|
2026-03-11 14:59:58 +01:00
|
|
|
command: /sbin/conduwuit
|
2020-07-23 23:58:08 +02:00
|
|
|
ports:
|
2026-04-20 18:15:39 +00:00
|
|
|
|
|
|
|
|
# If your reverse proxy is on the host, use this
|
|
|
|
|
# and configure it to connect to `127.0.0.1:8008`
|
2026-03-28 09:22:40 +00:00
|
|
|
- 127.0.0.1:8008:8008
|
2026-04-20 18:15:39 +00:00
|
|
|
|
|
|
|
|
# If your reverse proxy is on another machine, use this
|
|
|
|
|
# and configure it to connect to <this-machine-ip>:8008
|
|
|
|
|
# - 8008:8008
|
|
|
|
|
|
|
|
|
|
# If your reverse proxy is a docker container on the same network,
|
|
|
|
|
# comment out the entire `ports` section, and configure it to connect to `continuwuity:8008`
|
|
|
|
|
|
2020-07-23 23:58:08 +02:00
|
|
|
volumes:
|
2025-05-10 20:37:08 +01:00
|
|
|
- db:/var/lib/continuwuity
|
2026-04-04 07:03:12 +00:00
|
|
|
- ./continuwuity-resolv.conf:/etc/resolv.conf # use custom resolvers rather than Docker's
|
2025-05-10 20:37:08 +01:00
|
|
|
#- ./continuwuity.toml:/etc/continuwuity.toml
|
2020-07-23 23:58:08 +02:00
|
|
|
environment:
|
2026-03-28 09:22:40 +00:00
|
|
|
CONTINUWUITY_SERVER_NAME: example.com # EDIT THIS
|
2025-05-10 20:37:08 +01:00
|
|
|
CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity
|
|
|
|
|
CONTINUWUITY_ADDRESS: 0.0.0.0
|
2026-04-04 07:03:12 +00:00
|
|
|
CONTINUWUITY_PORT: 8008
|
2025-05-10 20:37:08 +01:00
|
|
|
#CONTINUWUITY_CONFIG: '/etc/continuwuity.toml' # Uncomment if you mapped config toml above
|
2020-08-02 15:55:40 +02:00
|
|
|
|
2026-04-04 10:46:28 +00:00
|
|
|
## (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
|
|
|
|
|
# }
|
|
|
|
|
|
2020-07-23 23:58:08 +02:00
|
|
|
volumes:
|
2022-02-12 10:29:04 +01:00
|
|
|
db:
|