mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 08:36:11 +02:00
24 lines
710 B
YAML
24 lines
710 B
YAML
services:
|
|
echohub-server:
|
|
build:
|
|
context: ./src
|
|
dockerfile: EchoHub.Server/Dockerfile
|
|
# image: ghcr.io/huebyte/echohub-server:latest # use this instead of build for pre-built images
|
|
container_name: echohub-server
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5000:5000"
|
|
# - "6667:6667" # IRC (plain, no encryption)
|
|
# - "6697:6697" # IRC (TLS encrypted, preferred)
|
|
volumes:
|
|
- echohub-data:/app/data
|
|
environment:
|
|
- Server__Name=My EchoHub Server
|
|
- Server__Description=A self-hosted EchoHub chat server
|
|
# - Server__PublicServer=true
|
|
# - Server__PublicHost=echohub.example.com
|
|
# - Irc__Enabled=true
|
|
|
|
volumes:
|
|
echohub-data:
|