Tag: docker

0

Setting Up Docker on Ubuntu 20.04 Focal (Arm64)

Installing Docker First add the required dependencies and the security key: sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common Add Docker’s official GPG key: c

0

Watching GitHub Repositories

I never bother to track changes on any GitHub repositories, but when I do, I use the Github File Watcher service. Github File WatcherSince I rely on many third party, open source, best effort types

0

Install PLEX on Synology NAS Using Docker Compose

This is an updated writeup of setting up PLEX Server using Docker Compose on a Synology NAS. Actually there is nothing specific about Synology rather than mapped folder paths. The previous setup uses

0

Run Pi-Hole in a Docker Container

I’m probably one of the last to setup a pi-hole and still not convinced it’s such a good idea. Will evaluate for a few weeks and then decide on what to do. The pi-hole is setup as the primary DNS serv

0

Setting Up a Web Proxy Using Squid and Docker

My company has enforced an HTTP proxy requirement on my work computer. That effectively makes the computer unusable for web related work unless I hook it up to the corporate network using a VPN connec

0

Deploying New Photon VM From Template and Docker Up

I’ve prepared a Photon micro image as a VSphere Template. I use this to get a tiny Linux host for hosting Docker. Change the default root passwordDefault password for root is “changeme” and must be

0

Install Docker-Compose on Photon

It seems docker-compose is not available as pre-packaged on Photon Download and installAs per docker-compose instructions: https://github.com/docker/compose/releases/ curl -L https://github.com/doc

0

Stop and Remove All Docker Containers

Sometimes it’s easier just to give up and start over ;) Stop and remove all containers docker stop $(docker ps -a -q)docker rm $(docker ps -a -q) Remove all images docker rmi $(docker images -q)

0

Setup CrashPlan in a Docker Container on Synology

CrashPlan is very popular for backing up NAS solutions. This post outlines the process for installing and configuring CrashPlan on a NAS in a Docker container and controlling it remotely from a CrashP

0

Install PLEX on Synology NAS Using Docker

A new updated version using docker-compose is available here. A recent docker bug on Synology wiped all my container configuration which is the reason for switching to docker-compose, which I anyhow f