Posts with "docker" Tag
using ssh inside docker
by Dan Aukes
Introduction
This article shows the following:
- How to create a custom user in a dockerfile
- ...
Using Python in a Docker Container
by Dan Aukes
Introduction
This tutorial makes it possible to spin up a container with everything you need ...
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 ...
Setting up two ROS2 containers in Docker
by Dan Aukes
Introduction
Simple example of docker containers running ros over the physical network.
```yaml version: '2'
services: ros1: ...