Posts
using ssh inside docker
by danaukes
Introduction
This article shows the following:
- How to create a custom user in a dockerfile
- ...
Using Python in a Docker Container
by danaukes
Introduction
This tutorial makes it possible to spin up a container with everything you need ...
Setting up a Mosquitto MQTT server in docker.
by danaukes
Docker compose
```yaml version: "3"
services: mosquitto: image: eclipse-mosquitto container_name: ...
Nextcloud in Docker
by danaukes
docker-compose
```yaml version: '2'
volumes: nextcloud: db:
services: db: image: mariadb:10.5 ...
NginX docker config
by danaukes
docker compose:
```yaml version: "3.9" services: test: image: nginx:latest ports: ...
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: ...