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
  • ...
Read More
Install Docker

by Dan Aukes

From here

  1. Install and test

    ```bash sudo apt remove ...

Read More
Using Python in a Docker Container

by Dan Aukes

Introduction

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

Read More
Nextcloud in Docker

by Dan Aukes

docker-compose

```yaml version: '2'

volumes: nextcloud: db:

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

Read More
NginX docker config

by Dan Aukes

docker compose:

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

Read More
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: ...

Read More
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 ...

Read More
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: ...

Read More