Fork me on GitHub

Organizations

@github @rss
34 results for Docker
  • Difficulty level: Can be done by anyone
    images/featured-image.png
    Bookstack is an “open source” alternative to MediaWiki or Confluence. Today I show how to install a Bookstack 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: bookstack: image: solidnerd/bookstack:0.27.4-1 restart: always ports: - 8080:8080 links: - database environment: DB_HOST: database:3306 DB_DATABASE: my_wiki DB_USERNAME: wikiuser DB_PASSWORD: my_wiki_pass database: image: mariadb restart: always volumes: - .
  • Difficulty level: It may take a little longer
    images/featured-image.png
    Atlassian has stopped selling the small server licenses and I have been thinking for a long time how to deal with this. Since I still want to use my installation for a long time, I implemented the following measures: Measure 1: I use Docker exclusively I run all Atlassian tools as Docker containers. Even older, native installations can be converted to a Docker installation via database dumps. These can then be conveniently run on an intel Nuc or a Synology disk station in the Homelab.
  • Difficulty level: Very athletic
    images/featured-image.png
    PrestaShop is a European open source e-commerce platform with, by its own admission, currently over 300,000 installations. Today I am installing this PHP software on my server. Some Linux, Docker and Docker Compose knowledge is required for this tutorial. Step 1: Install PrestaShop I create a new directory called “prestashop” on my server: x – + Terminal $ mkdir prestashop $ cd prestashop After that I go to the prestashop directory and create new file called “prestashop.
    corona Docker docker-compose kreativ krise Created Sun, 11 Apr 2021 00:00:00 +0000
  • Difficulty level: Can be done by anyone
    images/featured-image.png
    Collect all your favorite recipes in Docker container and organize them according to your needs. Write your own recipes or import recipes from websites, for example “Chef”, “Food 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: "2.0" services: mealie: container_name: mealie image: hkotel/mealie:latest restart: always ports: - 9000:80 environment: db_type: sqlite TZ: Europa/Berlin volumes: - .
  • Difficulty level: It may take a little longer
    images/featured-image.png
    I run many services in my Homelab network, for example LDAP, Gitlab, Atlassian Bamboo, Atlassian Confluence, Atlassian Jira, Jenkins, WordPress, Grafana, Graylog ,ESXI/VMware, Calibre and many more. It’s easy to get lost in the shuffle. Step 1: Create working folder Use this command to create a temporary working folder: x – + Terminal $ mkdir /tmp/bilder Heimdall is a service that allows you to manage bookmarks via Dashboard.
  • Difficulty level: It may take a little longer
    images/featured-image.png
    Today I show how to install a Pihole service on the Synology disk station and connect it to the Fritzbox. 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.
    diskstation Docker docker-compose Synology dns Created Mon, 01 Feb 2021 00:00:00 +0000
  • Difficulty level: It may take a little longer
    images/featured-image.png
    In the following tutorial, you will install the “chaturbate-downloader” as a Docker container on your Synology disk. This program can record live sessions and also search independently with filters. 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
    Papermerge is a young document management system (DMS) that can automatically assign and process documents. In this tutorial I show how I installed Papermerge on my Synology disk station and how the DMS works. 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: "2.1" services: papermerge: image: ghcr.io/linuxserver/papermerge container_name: papermerge environment: - PUID=1024 - PGID=100 - TZ=Europe/Berlin volumes: - .
  • Difficulty level: Can be done by anyone
    images/featured-image.png
    Many of my friends know that I run a private learning video portal on my Homelab - Network. I have saved video courses from past learning portal memberships and good Youtube tutorials for offline use on my NAS. Over time, I have collected 8845 video courses with 282616 individual videos. The total running time is equivalent to about 2 years. Absolutely crazy!In this tutorial I show how to backup good Youtube tutorials with a Docker download service for offline purposes.
    Docker docker-compose download linux Synology Created Thu, 27 Feb 2020 00:00:00 +0000
  • Difficulty level: It may take a little longer
    images/featured-image.png
    There is already a simpler tutorial on this blog: Synology-Nas: Install Calibre Web as ebook library. This tutorial is for all Synology DS professionals. 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).