Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olbat/docker-base-images
Base Docker images built using the official generation scripts
https://github.com/olbat/docker-base-images
alpine busybox centos debian docker-images fedora ubuntu
Last synced: 29 days ago
JSON representation
Base Docker images built using the official generation scripts
- Host: GitHub
- URL: https://github.com/olbat/docker-base-images
- Owner: olbat
- License: gpl-3.0
- Created: 2017-03-02T15:12:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-21T15:18:21.000Z (over 3 years ago)
- Last Synced: 2024-10-25T02:05:15.893Z (3 months ago)
- Topics: alpine, busybox, centos, debian, docker-images, fedora, ubuntu
- Language: Shell
- Homepage: https://hub.docker.com/u/olbat/
- Size: 33.2 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker base image builder [![Build Status](https://secure.travis-ci.org/olbat/docker-base-images.png?branch=master)](https://travis-ci.org/olbat/docker-base-images)
## Overview
Build base Docker images using the official [mkimage.sh](https://github.com/docker/docker/blob/master/contrib/mkimage.sh) generation script from docker's upstream repository.The generated images are modified to setup an UTF-8 locale when it's possible
(see Dockerfiles).## Dependencies
The build script depends on the following softwares:
* bash
* docker
* busybox-static
* debootstrap
* rinse## Usage
```
usage: build.sh [ ]```
__Note__: the build can be customized specifying the `INCLUDE` env. var.## Example
Build and push the `user/debian` image based on the `stable` Debian release with the 'jessie' and '8.x' extra tags:```bash
# as root
./build.sh debian stable user/debian jessie,8.x
```Build and push the `centos` image based on the CentOS 7 release:
```bash
# as root
./build.sh centos centos-7
```__Note__: if the image has to be pushed pushed to a login-enabled registry, you should first login using `docker login`
## Images
- [Busybox](https://hub.docker.com/r/olbat/busybox)
- [Alpine](https://hub.docker.com/r/olbat/alpine)
- [Debian](https://hub.docker.com/r/olbat/debian)
- [Ubuntu](https://hub.docker.com/r/olbat/ubuntu)
- [CentOS](https://hub.docker.com/r/olbat/centos)
- [Fedora](https://hub.docker.com/r/olbat/fedora)__Note__: this images are generated on a daily basis using [Travis CI](https://travis-ci.org/olbat/docker-base-images)