Posts in docker
Using Python in a Docker Container
by Dan Aukes
Introduction
This tutorial makes it possible to spin up a container with everything you need ...
Setting up a Mosquitto MQTT server in docker.
by Dan Aukes
Docker compose
```yaml version: "3"
services: mosquitto: image: eclipse-mosquitto container_name: ...
Nextcloud in Docker
by Dan Aukes
docker-compose
```yaml version: '2'
volumes: nextcloud: db:
services: db: image: mariadb:10.5 ...
NginX docker config
by Dan Aukes
docker compose:
```yaml version: "3.9" services: test: image: nginx:latest ports: ...
PiHole Setup
by Dan Aukes
docker compose
```yaml version: "3"
More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
services: pihole: ...
Start docker automatically as a ```systemd``` service
by Dan Aukes
Docker Compose Example
copy and paste the folowing text into a new file called ~/script.sh
```bash
!/bin/bash
SERVICENAME=$(basename ...
Using tailscale with docker
by Dan Aukes
- Settings-->keys
- check reusable, ephemeral, pre-approved
- Copy the key
- paste the following in your bashrc
...