mirror of
https://github.com/ancsemi/Haven
synced 2026-04-21 13:37:41 +00:00
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
apiVersion: zeabur.com/v1
|
|
kind: Template
|
|
metadata:
|
|
name: Haven
|
|
spec:
|
|
description: "Self-hosted private chat — your server, your rules. No cloud. No tracking. Free forever."
|
|
icon: https://raw.githubusercontent.com/ancsemi/Haven/main/Haven-Desktop/assets/icon.png
|
|
tags:
|
|
- Chat
|
|
- Self-hosted
|
|
- Communication
|
|
variables:
|
|
- key: HAVEN_DOMAIN
|
|
type: DOMAIN
|
|
name: Domain
|
|
description: What domain do you want for your Haven server?
|
|
readme: |-
|
|
# Haven — Private Chat
|
|
|
|
Self-hosted Discord alternative. Run it on your own infrastructure.
|
|
Register with username `admin` to become the server owner.
|
|
|
|
**Data persists** in the `/data` volume (database, uploads, certs, config).
|
|
services:
|
|
- name: Haven
|
|
template: PREBUILT
|
|
domainKey: HAVEN_DOMAIN
|
|
spec:
|
|
source:
|
|
image: ghcr.io/ancsemi/haven:latest
|
|
ports:
|
|
- id: web
|
|
port: 3000
|
|
type: HTTP
|
|
volumes:
|
|
- id: data
|
|
dir: /data
|
|
env:
|
|
PORT:
|
|
default: "3000"
|
|
HOST:
|
|
default: "0.0.0.0"
|
|
NODE_ENV:
|
|
default: "production"
|
|
HAVEN_DATA_DIR:
|
|
default: "/data"
|
|
FORCE_HTTP:
|
|
default: "true"
|