2025-12-08 12:53:33 +00:00
|
|
|
# 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
|
2025-12-08 21:35:53 +00:00
|
|
|
- soju-run:/run/soju
|
2025-12-08 12:53:33 +00:00
|
|
|
- type: bind
|
|
|
|
|
source: ./soju/config
|
2025-12-08 21:28:33 +00:00
|
|
|
target: /soju-config
|
2025-12-08 12:53:33 +00:00
|
|
|
content: |
|
|
|
|
|
db sqlite3 /db/main.db
|
|
|
|
|
message-store db
|
|
|
|
|
file-upload fs /uploads/
|
2025-12-08 21:16:20 +00:00
|
|
|
listen irc+insecure://0.0.0.0:6667
|
|
|
|
|
listen ws+insecure://0.0.0.0:80
|
2025-12-08 21:35:53 +00:00
|
|
|
listen unix+admin:///run/soju/admin
|
2025-12-08 12:53:33 +00:00
|
|
|
networks:
|
|
|
|
|
default:
|
|
|
|
|
aliases:
|
|
|
|
|
- gamja-backend
|
|
|
|
|
|
|
|
|
|
gamja:
|
|
|
|
|
image: codeberg.org/emersion/gamja:latest
|
|
|
|
|
environment:
|
|
|
|
|
- SERVICE_FQDN_GAMJA_80
|
|
|
|
|
depends_on:
|
2025-12-08 21:28:33 +00:00
|
|
|
- soju
|
2025-12-08 12:53:33 +00:00
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
soju-db:
|
|
|
|
|
soju-uploads:
|
2025-12-08 21:35:53 +00:00
|
|
|
soju-run:
|