<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[docmost]]></title><description><![CDATA[<h1><strong>Docmost</strong></h1>
<hr />
<h3>What is <a href="https://github.com/docmost/docmost" target="_blank" rel="noopener noreferrer nofollow ugc">Docmost</a>?</h3>
<p dir="auto">Open-source collaborative wiki and documentation software.</p>
<h3>LISCENSE</h3>
<p dir="auto"><a href="https://github.com/docmost/docmost/blob/main/LICENSE" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/docmost/docmost/blob/main/LICENSE</a></p>
<hr />
<h3><img src="https://forum.sumisu.xyz/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4e6.png?v=e98e1c9ec1b" class="not-responsive emoji emoji-android emoji--package" style="height:23px;width:auto;vertical-align:middle" title=":package:" alt="📦" /> Docker Compose</h3>
<pre><code>version: '3'

services:
  docmost:
    image: docmost/docmost:latest
    depends_on:
      - db
      - redis
    environment:
      APP_URL: 'http://localhost:3001'
      APP_SECRET: 'rF&amp;TPbV9F@4qRV7tN84wqh^YRf&amp;%vKh3' #Random String of Characters, Numbers, and Symbols
      DATABASE_URL: 'postgresql://docmost:STRONG_DB_PASSWORD@db:5432/docmost?schema=public'
      REDIS_URL: 'redis://redis:6379'
    ports:
      - "3001:3000"
    restart: unless-stopped
    volumes:
      - docmost:/app/data/storage

  db:
    image: postgres:16-alpine
    environment:
      POSTGRES_DB: docmost
      POSTGRES_USER: docmost
      POSTGRES_PASSWORD: STRONG_DB_PASSWORD
    restart: unless-stopped
    volumes:
      - db_data:/var/lib/postgresql/data

  redis:
    image: redis:7.2-alpine
    restart: unless-stopped
    volumes:
      - redis_data:/data

volumes:
  docmost:
  db_data:
  redis_data:
</code></pre>
]]></description><link>https://forum.sumisu.xyz/topic/45/docmost</link><generator>RSS for Node</generator><lastBuildDate>Sat, 30 May 2026 23:14:35 GMT</lastBuildDate><atom:link href="https://forum.sumisu.xyz/topic/45.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 07 Dec 2024 01:43:10 GMT</pubDate><ttl>60</ttl></channel></rss>