Posts

using ssh inside docker

by danaukes

Introduction

This article shows the following:

  • How to create a custom user in a dockerfile
  • ...
Read More
Health Check

by danaukes

...

Read More
Install Docker

by danaukes

From here

  1. Install and test

    ```bash sudo apt remove ...

Read More
Using Python in a Docker Container

by danaukes

Introduction

This tutorial makes it possible to spin up a container with everything you need ...

Read More
Setting up a Mosquitto MQTT server in docker.

by danaukes

Docker compose

```yaml version: "3"

services: mosquitto: image: eclipse-mosquitto container_name: ...

Read More
Nextcloud in Docker

by danaukes

docker-compose

```yaml version: '2'

volumes: nextcloud: db:

services: db: image: mariadb:10.5 ...

Read More
NginX docker config

by danaukes

docker compose:

```yaml version: "3.9" services: test: image: nginx:latest ports: ...

Read More
PiHole Setup

by danaukes

docker compose

```yaml version: "3"

More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/

services: pihole: ...

Read More