oneoffcoder / docker-containers

A collection of pedantic docker containers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Intro

One-Off Coder Logo

These are some sample docker containers for learning purposes.

x86 Docker Images

Raspberry Pi Docker Images

Raspberry Pi Images

Here are the dependencies between the RPi Docker images.

  • rpi-base
  • rpi-miniconda, rpi-darknet (from rpi-base)
  • rpi-jupyterlab (from rpi-miniconda)
  • rpi-scikit (from rpi-jupyterlab)
  • rpi-nlp (from rpi-scikit)
  • rpi-deeplearning (from rpi-nlp)

The rpi-python37 docker image does not depend on the others.

Databricks Images

  • db-nlp: Customized Natural Language Processing (NLP) container for use with Databricks.
  • db-java: Template Docker container showing how to manage Java/Scala dependencies for use with Databricks.

Docker Hub

All the images are published on Docker Hub.

Cleaning up

Remove all exited docker images

docker rm $(docker ps -q -f status=exited)

Remove all docker images that are dangling.

docker image rm $(docker images -f dangling=true -q)

Remove stopped container and images without any container associations.

docker system prune -a -f

Citation

@misc{oneoffcoder_docker_containers_2019, 
title={Docker Containers}, 
url={https://github.com/oneoffcoder/docker-containers}, 
journal={GitHub},
author={One-Off Coder}, 
year={2019}, 
month={Jul}}

Copyright Stuff

Copyright 2019 One-Off Coder

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Contact

One-Off Coder

About

A collection of pedantic docker containers.


Languages

Language:Python 39.3%Language:Cuda 26.9%Language:Jupyter Notebook 19.7%Language:Shell 9.1%Language:Dockerfile 3.3%Language:TypeScript 0.6%Language:Cython 0.3%Language:XSLT 0.2%Language:JavaScript 0.2%Language:HTML 0.1%Language:Makefile 0.0%Language:C++ 0.0%Language:CSS 0.0%