Files
coolify/templates/compose/soju.yaml
T
Murat Aslan 139db09fe0 fix: correct soju config path and simplify template
- Fix config path to /soju-config (not /etc/soju/config)
- Remove unix+admin listener (causes bind error)
- Remove health checks (nc/wget not available in containers)
- Simplify depends_on configuration

Tested locally with docker compose - both services start successfully
2025-12-09 00:28:33 +03:00

38 lines
851 B
YAML

# documentation: https://soju.im/
# slogan: A user-friendly IRC bouncer with a modern web interface
# category: communication
# tags: irc, bouncer, chat, messaging, relay
# logo: svgs/soju.svg
# port: 80
services:
soju:
image: codeberg.org/emersion/soju:latest
volumes:
- soju-db:/db
- soju-uploads:/uploads
- type: bind
source: ./soju/config
target: /soju-config
content: |
db sqlite3 /db/main.db
message-store db
file-upload fs /uploads/
listen irc+insecure://0.0.0.0:6667
listen ws+insecure://0.0.0.0:80
networks:
default:
aliases:
- gamja-backend
gamja:
image: codeberg.org/emersion/gamja:latest
environment:
- SERVICE_FQDN_GAMJA_80
depends_on:
- soju
volumes:
soju-db:
soju-uploads: