All Projects → bitnami → Minideb

bitnami / Minideb

Licence: other
A small image based on Debian designed for use in containers

Programming Languages

shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to Minideb

Docker Gitlab
Dockerized GitLab
Stars: ✭ 7,084 (+353.81%)
Mutual labels:  containers, docker-image
Bitnami Docker Parse
Stars: ✭ 56 (-96.41%)
Mutual labels:  containers, docker-image
Centos7 S2i Nodejs
DEPRECATED OpenShift S2I builder images for Node.js ✨
Stars: ✭ 34 (-97.82%)
Mutual labels:  containers, docker-image
Docker Squid
Dockerfile to create a Docker container image for Squid proxy server
Stars: ✭ 669 (-57.14%)
Mutual labels:  containers, docker-image
Bitnami Docker Ghost
Bitnami Docker Image for Ghost
Stars: ✭ 76 (-95.13%)
Mutual labels:  containers, docker-image
Docker Bind
Dockerize BIND DNS server with webmin for DNS administration
Stars: ✭ 769 (-50.74%)
Mutual labels:  containers, docker-image
Bitnami Docker Tensorflow Serving
Bitnami Docker Image for TensorFlow Serving
Stars: ✭ 49 (-96.86%)
Mutual labels:  containers, docker-image
Please Contain Yourself
A Docker tutorial written for people who don't actually know Docker already.
Stars: ✭ 385 (-75.34%)
Mutual labels:  containers, docker-image
Anchore Engine
A service that analyzes docker images and applies user-defined acceptance policies to allow automated container image validation and certification
Stars: ✭ 1,192 (-23.64%)
Mutual labels:  containers, docker-image
Alpine Erlang
An alpine image with Erlang installed, intended for releases
Stars: ✭ 73 (-95.32%)
Mutual labels:  containers, docker-image
Bitnami Docker Wordpress
Bitnami Docker Image for WordPress
Stars: ✭ 476 (-69.51%)
Mutual labels:  containers, docker-image
Uvicorn Gunicorn Starlette Docker
Docker image with Uvicorn managed by Gunicorn for high-performance Starlette web applications in Python 3.7 and 3.6 with performance auto-tuning. Optionally with Alpine Linux.
Stars: ✭ 92 (-94.11%)
Mutual labels:  debian, docker-image
Uwsgi Nginx Docker
Docker image with uWSGI and Nginx for applications in Python 3.5 and above and Python 2.7 (as Flask) in a single container. Optionally with Alpine Linux.
Stars: ✭ 466 (-70.15%)
Mutual labels:  debian, docker-image
Ansible Role Docker
Ansible Role - Docker
Stars: ✭ 845 (-45.87%)
Mutual labels:  debian, containers
Picluster
A Simplified Docker Swarm or Kubernetes Alternative to Container Scheduling and Orchestration
Stars: ✭ 390 (-75.02%)
Mutual labels:  containers, docker-image
Docker Redmine
Docker Image for Redmine
Stars: ✭ 1,044 (-33.12%)
Mutual labels:  containers, docker-image
Meinheld Gunicorn Flask Docker
Docker image with Meinheld and Gunicorn for Flask applications in Python. Optionally with Alpine Linux.
Stars: ✭ 336 (-78.48%)
Mutual labels:  debian, docker-image
Umoci
umoci modifies Open Container images
Stars: ✭ 349 (-77.64%)
Mutual labels:  containers, docker-image
Bitnami Docker Express
Bitnami Express Docker Compose development environment
Stars: ✭ 63 (-95.96%)
Mutual labels:  containers, docker-image
Bitnami Docker Airflow
Bitnami Docker Image for Apache Airflow
Stars: ✭ 89 (-94.3%)
Mutual labels:  containers, docker-image

minideb

CI

What is Minideb

A minimalist Debian-based image built specifically to be used as a base image for containers.

Use Minideb

You can use the image directly, e.g.

$ docker run --rm -it bitnami/minideb:latest

There are tags for the different Debian releases.

$ docker run --rm -it bitnami/minideb:stretch

The images are built daily and have the security release enabled, so will contain any security updates released more than 24 hours ago.

You can also use the images as a base for your own Dockerfile:

FROM bitnami/minideb:stretch

Why use Minideb

  • This image aims to strike a good balance between having small images, and having many quality packages available for easy integration.

  • The image is based on glibc for wide compatibility, and has apt for access to a large number of packages. In order to reduce size of the image, some things that aren't required in containers are removed:

    • Packages that aren't often used in containers (hardware related, init systems etc.)
    • Some files that aren't usually required (docs, man pages, locales, caches)
  • These images also include an install_packages command that you can use instead of apt. This takes care of some things for you:

    • Install the named packages, skipping prompts etc.
    • Clean up the apt metadata afterwards to keep the image small.
    • Retrying if apt fails. Sometimes a package will fail to download due to a network issue, and this may fix that, which is particularly useful in an automated build pipeline.

    For example:

    $ install_packages apache2 memcached
    

Adoption of Minideb

The minideb container image is the base image for many Bitnami-maintained language runtimes including php, nodejs, ruby and infrastructure components including mariadb, redis, nginx and mongodb.

Compatibility

The image points to the Debian archive, so you are free to install packages from there that you need. However because some Essential packages have been removed they may not always install or work correctly.

In those cases you can figure out which package is needed and manually specify to install it along with your desired packages. Please feel free to submit an issue request so that we can reach out and help you quickly.

Building Minideb

We provide a Makefile to help you build Minideb locally. It should be run on a Debian based machine and requires sudo privileges.

$ sudo make

To build an individual release (stretch, buster or unstable)

$ sudo make stretch

To test the resulting image:

$ sudo make test-stretch

Building Minideb for foreign architecture

Make commands shown above will build an image for the architecture you are currently working on.
To build an image for a foreign architecture (for example to build a multiarch image), we provide a simple script which run a QEMU instance for the target architecture and build the image inside it.

To build and test a buster image for arm64:

$ ./qemu_build buster arm64

The image will be then imported locally through the docker cli with $distribution-$architecture tag (example: bitnami/minideb:buster-arm64)

Current limitations of qemu_build script:

  • Can be run only on debian-based distributions
  • Support AMD64 and ARM64 target architectures only

Contributing

We'd love for you to contribute to this image. You can request new features by creating an issue, or submit a pull request with your contribution.

License

Copyright (c) 2016-2017 Bitnami

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].