mirror of
https://github.com/tiennm99/coolify.git
synced 2026-05-13 00:58:06 +00:00
139db09fe0
- 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
38 lines
851 B
YAML
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:
|