Fork me on GitHub

Organizations

@github @rss
  • Difficulty level: Not too easy and not too hard
    images/featured-image.png
    Bitwarden is a free open-source password management service that stores sensitive information such as website credentials in an encrypted vault. Today I’ll show how to install a BitwardenRS on the Synology DiskStation. Step 1: Prepare BitwardenRS folder I create a new directory called “bitwarden” in the Docker directory. Step 2: Install BitwardenRS I click on the “Registry” tab in the Synology Docker window and search for “bitwarden”.
  • Difficulty level: It may take a little longer
    images/featured-image.png
    NetBox is a free software used for computer network management. Today I will show how to install a Netbox service on Synology DiskStation. Step 1: Prepare Synology The first thing to do is to enable SSH login on Diskstation. To do this, go to the “Control Panel” > “Terminal After that you can log in via “SSH”, the specified port and the administrator password (Windows users take Putty or WinSCP).
  • Difficulty level: It may take a little longer
    images/featured-image.png
    Step 1: Prepare Synology The first thing to do is to enable SSH login on Diskstation. To do this, go to the “Control Panel” > “Terminal After that you can log in via “SSH”, the specified port and the administrator password (Windows users take Putty or WinSCP). I log in via Terminal, winSCP or Putty and leave this console open for later. Step 2: create portainer folder I create a new directory called “portainer” in the Docker directory.
  • Difficulty level: Not too easy and not too hard
    images/featured-image.png
    If you run Docker containers on your disk station, you naturally want them to always be up to date. Watchtower updates images and containers automatically. This way you can enjoy the latest features and the most up-to-date data security. Today I will show you how to install Watchtower on your Synology DiskStation. Step 1: Prepare Synology The first thing to do is to enable SSH login on Diskstation. To do this, go to the “Control Panel” > “Terminal After that you can log in via “SSH”, the specified port and the administrator password (Windows users take Putty or WinSCP).
  • Difficulty level: Not too easy and not too hard
    images/featured-image.png
    Confluence is the gold standard in the knowledge base space. Creating your own Confluence user macros is also a snap. Today I’ll show how I created a terminal macro. Step 1: Create user macro I click on “User Macros” > “Create User Macro” in the “Administration” area. Then I enter the user macro name and select the “Define user macros” option “Rendered”. Step 2: Develop user macro Every “rendered” user macro has a body variable by default:
  • Difficulty level: Not too easy and not too hard
    images/featured-image.png
    DokuWiki is a standards-compliant, easy-to-use and at the same time extremely versatile open source wiki software. Today I show how to install a dokuWiki service on the Synology DiskStation. Option for professionals Of course, as an experienced Synology user, you can log in right away with SSH and install the whole setup via Docker Compose file. version: '3' services: dokuwiki: image: bitnami/dokuwiki:latest restart: always ports: - 8080:8080 - 8443:8443 environment: TZ: 'Europe/Berlin' DOKUWIKI_USERNAME: 'admin' DOKUWIKI_FULL_NAME: 'wiki' DOKUWIKI_PASSWORD: 'password' volumes: - .
  • Difficulty level: Can be done by anyone
    images/featured-image.png
    Wallabag is a program for archiving interesting web pages or articles. Today I will show how to install a Wallabag service on the Synology disk station. Option for professionals Of course, as an experienced Synology user, you can log in right away with SSH and install the whole setup via Docker Compose file. version: '3' services: wallabag: image: wallabag/wallabag environment: - MYSQL_ROOT_PASSWORD=wallaroot - SYMFONY__ENV__DATABASE_DRIVER=pdo_mysql - SYMFONY__ENV__DATABASE_HOST=db - SYMFONY__ENV__DATABASE_PORT=3306 - SYMFONY__ENV__DATABASE_NAME=wallabag - SYMFONY__ENV__DATABASE_USER=wallabag - SYMFONY__ENV__DATABASE_PASSWORD=wallapass - SYMFONY__ENV__DATABASE_CHARSET=utf8mb4 - SYMFONY__ENV__DOMAIN_NAME=http://192.
  • Difficulty level: Not too easy and not too hard
    images/featured-image.png
    Docspell is a document management system for Synology DiskStation. Through Docspell documents can be indexed, searched and found much faster. Today I will show how to install a Docspell service on the Synology disk station. Step 1: Prepare Synology The first thing to do is to enable SSH login on Diskstation. To do this, go to the “Control Panel” > “Terminal After that you can log in via “SSH”, the specified port and the administrator password (Windows users take Putty or WinSCP).
  • Difficulty level: Can be done by anyone
    images/featured-image.png
    XWiki is a free wiki software platform written in Java and designed with extensibility in mind. Today I’ll show how to install an xWiki service on the Synology DiskStation. Option for professionals Of course, as an experienced Synology user, you can log in right away with SSH and install the whole setup via Docker Compose file. version: '3' services: xwiki: image: xwiki:10-postgres-tomcat restart: always ports: - 8080:8080 links: - db environment: DB_HOST: db DB_DATABASE: xwiki DB_DATABASE: xwiki DB_PASSWORD: xwiki TZ: 'Europe/Berlin' db: image: postgres:latest restart: always volumes: - .
    diskstation Docker docker-compose Synology xwiki Created Sat, 17 Apr 2021 00:00:00 +0000
  • Difficulty level: It may take a little longer
    images/featured-image.png
    The Corona crisis is hitting service providers in Germany hard. Digital tools and solutions can help to get through the Corona pandemic as safely as possible. In this tutorial series “Creative out of the crisis” I show technologies or tools that can be useful for small businesses.Today I show “Easyappointments”, a “click and meet” booking tool for services, for example hairdressers or stores. Easyappointments consists of two areas: Area 1: Backend A “backend” for managing service and appointments.