Open-source team chat with threaded conversations
Open-source team chat with threaded conversations
- zulip: zulip/docker-zulip:latest
- zulip-db: Postgres database
curl -q -LSsf "https://raw.githubusercontent.com/composemgr/zulip/main/docker-compose.yaml" -o compose.ymlgit clone "https://github.com/composemgr/zulip" ~/.local/srv/docker/zulip
cd ~/.local/srv/docker/zulip
docker compose up -dcomposemgr install zulipTZ=America/New_York
DB_USER_NAME=zulipSee docker-compose.yaml for complete list of configurable options.
- Web Interface: http://172.17.0.1:8093
./rootfs/data/zulip- Data storage./rootfs/config/zulip- Data storage./rootfs/data/db/postgres/zulip- Data storage
- Change all default passwords before deploying to production
- Use strong secrets for all authentication tokens
- Configure HTTPS using a reverse proxy (nginx, traefik, caddy)
- Regularly update Docker images for security patches
- Backup your data regularly
docker compose logs -f zulip# Start services
docker compose up -d
# Stop services
docker compose down
# Update to latest images
docker compose pull && docker compose up -d
# View logs
docker compose logs -f
# Restart services
docker compose restart- Docker Engine 20.10+
- Docker Compose V2+