featured story

Integration of onlyoffice into nextcloud

Hi! We're currently integrating onlyoffice into Nextcloud. services: db: image: mariadb:12.3.2 container_name: nextcloud_db restart: unless-stopped command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: - db:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD= - MYSQL_PASSWORD= - MYSQL_DATABASE=nextcloud - MYSQL_USER=

Read post
Integration of onlyoffice into nextcloud

featured story

Creating backups using duplicati

Duplicati is a very simple and straightforward backup tool, which is why I use it. In this example, duplicati will be running in a Docker container. 1. Installing duplicati 2. Backing up files 3. Backing up the database and crontab Installing duplicates Let's create a duplicate folder mkdir

Read post

featured story

Setting up your own CoreDNS DNS server in docker

Hello! In this article, we'll set up our own DNS server to specify our own NS servers. 1) Create a folder, for example, coredns mkdir coredns 2) In the coredns folder, create a file docker-compose.yml services: coredns: image: coredns/coredns:1.14.4 container_name: coredns restart:

Read post
Setting up your own CoreDNS DNS server in docker