Fork me on GitHub

Organizations

@github @rss
34 results for Docker
  • 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.
  • Difficulty level: Can be done by anyone
    images/featured-image.png
    Wiki.js is a powerful open source wiki software that makes documentation a pleasure with its simple interface. Today I show how to install a Wiki.js 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: wikijs: image: requarks/wiki:latest restart: always ports: - 8082:3000 links: - database environment: DB_TYPE: mysql DB_HOST: database DB_PORT: 3306 DB_NAME: my_wiki DB_USER: wikiuser DB_PASS: my_wiki_pass TZ: 'Europe/Berlin' database: image: mysql restart: always expose: - 3306 volumes: - .
  • Difficulty level: Can be done by anyone
    images/featured-image.png
    MediaWiki is a PHP-based wiki system that is available for free as an open source product. Today I show how to install a MediaWiki 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: mediawiki: image: mediawiki restart: always ports: - 8081:80 links: - database volumes: - .