<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../assets/xml/rss.xsl" media="all"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Aaron Ji's blog (Posts about nextcloud)</title><link>https://blog.jiya.net/</link><description></description><atom:link href="https://blog.jiya.net/categories/nextcloud.xml" rel="self" type="application/rss+xml"></atom:link><language>en</language><copyright>Contents © 2025 &lt;a href="mailto:me@jiya.net"&gt;Aaron Ji&lt;/a&gt; </copyright><lastBuildDate>Wed, 19 Feb 2025 06:17:18 GMT</lastBuildDate><generator>Nikola (getnikola.com)</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><item><title>Install Nextcloud and apps</title><link>https://blog.jiya.net/posts/2022/04/install-nextcloud-and-apps.html</link><dc:creator>Aaron Ji</dc:creator><description>&lt;div id="outline-container-orgf3c343e" class="outline-2"&gt;
&lt;h2 id="orgf3c343e"&gt;docker-compose&lt;/h2&gt;
&lt;div class="outline-text-2" id="text-orgf3c343e"&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;version: '2'

services:
  db:
    image: mariadb
    restart: always
    ports:
      - 3300:3306
    command: --innodb-read-only-compressed=OFF --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    volumes:
      - ./db:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=password
      - MYSQL_PASSWORD=password
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud

  app:
    image: nextcloud:fpm
    restart: always
    links:
      - db
    volumes:
      - ./app:/var/www/html
      - ./fonts:/usr/share/fonts
    environment:
      - MYSQL_PASSWORD=password
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_HOST=db

  web:
    image: nginx
    restart: always
    ports:
      - 8081:80
&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id="outline-container-orge9c09af" class="outline-2"&gt;
&lt;h2 id="orge9c09af"&gt;Apps&lt;/h2&gt;
&lt;div class="outline-text-2" id="text-orge9c09af"&gt;
&lt;/div&gt;
&lt;div id="outline-container-orgdc1c9a5" class="outline-3"&gt;
&lt;h3 id="orgdc1c9a5"&gt;&lt;a href="https://apps.nextcloud.com/apps/files_markdown"&gt;Markdown Editor&lt;/a&gt;&lt;/h3&gt;
&lt;/div&gt;

&lt;div id="outline-container-org6f29304" class="outline-3"&gt;
&lt;h3 id="org6f29304"&gt;&lt;a href="https://apps.nextcloud.com/apps/files_texteditor"&gt;Plain text editor&lt;/a&gt;&lt;/h3&gt;
&lt;/div&gt;

&lt;div id="outline-container-org21c4fc0" class="outline-3"&gt;
&lt;h3 id="org21c4fc0"&gt;&lt;a href="https://apps.nextcloud.com/apps/drawio"&gt;Draw.io&lt;/a&gt;&lt;/h3&gt;
&lt;/div&gt;

&lt;div id="outline-container-org2328cc3" class="outline-3"&gt;
&lt;h3 id="org2328cc3"&gt;&lt;a href="https://apps.nextcloud.com/apps/richdocuments"&gt;Nextcloud Office&lt;/a&gt;&lt;/h3&gt;
&lt;/div&gt;

&lt;div id="outline-container-org10dc06c" class="outline-3"&gt;
&lt;h3 id="org10dc06c"&gt;&lt;a href="https://apps.nextcloud.com/apps/richdocumentscode"&gt;Collabora Online - Built-in CODE Server&lt;/a&gt;&lt;/h3&gt;
&lt;/div&gt;

&lt;div id="outline-container-orge825c29" class="outline-3"&gt;
&lt;h3 id="orge825c29"&gt;&lt;del&gt;&lt;a href="https://apps.nextcloud.com/apps/onlyoffice"&gt;ONLYOFFICE&lt;/a&gt;&lt;/del&gt;&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</description><category>nextcloud</category><guid>https://blog.jiya.net/posts/2022/04/install-nextcloud-and-apps.html</guid><pubDate>Fri, 08 Apr 2022 04:10:00 GMT</pubDate></item></channel></rss>