Skip to content

OneZoom/docker-base

 
 

Repository files navigation

docker-base

Build Status

Docker baseimage based on phusion/baseimage-docker

Changes

  • Removed ssh service
  • Updated to Ubuntu 20.04

Features

  • Environment variables to disable services
  • Using scripts in my_init.d to initialize services (e.g 10-startup.sh, 20-nginx.sh .. etc)
  • Using scripts in my_shutdown.d to cleanup services before container stop (e.g 80-postfix.sh ..etc)
  • Bats (bats-core/bats-core) based test cases

Ubuntu 20.04 (docker-base)

Environment

Variable Default Example
DISABLE_SYSLOG 0 1 (to disable)
DISABLE_CRON 0 1 (to disable)

Build

# clone project
git clone https://github.com/madharjan/docker-base
cd docker-base

# build
make

# tests
make run
make test

# clean
make clean

Run

# stop & remove previous instances
docker stop base
docker rm base

# run container
docker run -d \
  -e DEBUG=false \
  -e DISABLE_SYSLOG=0 \
  -e DISABLE_CRON=0 \
  --name base madharjan/docker-base:20.04 \
  /sbin/my_init --log-level 3

About

Docker baseimage based on phusion/baseimage-docker

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 52.1%
  • Shell 37.8%
  • Makefile 7.9%
  • Dockerfile 2.2%